Array
(
    [dirname] => .
    [basename] => eric_vars.php
    [extension] => php
    [filename] => eric_vars
)
1. file=./eric_vars.php<br>
2. file=.//eric_vars.php<br>
3. file=eric_vars.php<br>
<?php // Save this file as: ./eric_vars.php ?>
<?php
echo("in eric_vars.php<br>");
// Report all PHP errors (see changelog)
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
date_default_timezone_set('America/New_York');
$editor = "Notepad++";
$author = "Jim Gerland";
$debug = 0;
$PHP_SELF = $_SERVER['PHP_SELF'];
$dbServer = "bsuacad.buffalostate.edu";
$dbUsername = "nageles";
$dbPassword = "Eric123@CanAccess";
$dbDatabase = "nageles";
$monthsArray = array("January" => 31, "February" => 28);
?> 