Hi
I have been successfully running db driven websites on my ISPs webserver
using PHP Version 4.2.3.for a while now.
I am now experimenting with running mysql/php on my lap-top so I can access
these sites without being connected to the internet.
I have downloaded the latest binaries for MySQL and PHP and they are running
on the laptop with IIS5.1.
However, when I use the code that was running correctly on my ISPs webserver
on the LOCALHOST...
$logged_on_memb er_id=$_SESSION['s_member_id'];
$logged_on_memb er_name=$_SESSI ON['s_member_name'];
Throws up the following error messages...
Notice: Undefined index: s_member_id in membervariables .php on line 2
Notice: Undefined index: s_member_name in membervariables .php on line 3
What have I done differently/incorrectly/badly???
TIA
Mark
I have been successfully running db driven websites on my ISPs webserver
using PHP Version 4.2.3.for a while now.
I am now experimenting with running mysql/php on my lap-top so I can access
these sites without being connected to the internet.
I have downloaded the latest binaries for MySQL and PHP and they are running
on the laptop with IIS5.1.
However, when I use the code that was running correctly on my ISPs webserver
on the LOCALHOST...
$logged_on_memb er_id=$_SESSION['s_member_id'];
$logged_on_memb er_name=$_SESSI ON['s_member_name'];
Throws up the following error messages...
Notice: Undefined index: s_member_id in membervariables .php on line 2
Notice: Undefined index: s_member_name in membervariables .php on line 3
What have I done differently/incorrectly/badly???
TIA
Mark
Comment