I have a PHP script called customers.php that is passed a parameter via the URL, e.g.:
http://www.mysite,com/customers.php?employeeId=1
Inside my customers.php s
You can use $GLOBALS to solve this issue as well.
$GLOBALS
$tit = "Hello"; $GLOBALS["docTitle"] = $tit; include ("my.php");