#register variable
session_register("product1");
session_register("product2");
$product1="Palm pilot";
$product2="Power mac 5";
#print variable from another page
print "Your chosen products are:\n\n";
print "<ul><li>$product1\n<li>$product2\n</ul>\n";
why the above code return
Your chosen products are:
Notice: Undefined variable: product1 in C:\Program Files\Apache
Group\Apache2\htdocs\session\session3.php on line 11
Notice: Undefined variable: product2 in C:\Program Files\Apache
Group\Apache2\htdocs\session\session3.php on line 11