For some reason I cannot pass variables from one PHP page to another.  I
cannot figure out what I am going wrong.

PHP_page1

session_start();
$test="help";
session_register("test");

PHP_page2
echo session_register("test");

When I echo session_register("test"), nothing displays.  Why?



-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to