I think this is actually a configuration problem...
Posted: Sun Aug 24, 2003 7:14 pm
I had PHP (version unknown) running on an XP machine and everything seemed to by hunky dory. I upgraded to 4.3.2 and at the same time put it up on my Win 2k server. Now code that was working fails. The particular failure is as follows:
I have an href with a link as follows main.php?menuarea=deparments
and I have the following code
<?php
if (isset($menuarea))
if ($menuarea == "departments") include("deptMenu.inc");
?>
I get
Notice: Undefined variable: menuarea in C:\Inetpub\wwwroot\Norwescon\Norwescon 27\menu.inc on line 39
this same code worked before I upgraded and fails the same way on both the XP box and Win 2k box BUT does work on the Linux box running 4.3.2 that the code will eventually reside on. Thus I suspect a configuration issue.
I have an href with a link as follows main.php?menuarea=deparments
and I have the following code
<?php
if (isset($menuarea))
if ($menuarea == "departments") include("deptMenu.inc");
?>
I get
Notice: Undefined variable: menuarea in C:\Inetpub\wwwroot\Norwescon\Norwescon 27\menu.inc on line 39
this same code worked before I upgraded and fails the same way on both the XP box and Win 2k box BUT does work on the Linux box running 4.3.2 that the code will eventually reside on. Thus I suspect a configuration issue.