ID: 16839 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Bogus Bug Type: Session related Operating System: Windows NT 5.0 build 2195 PHP Version: 4.2.0 New Comment:
Turn on register_globals or use $_SESSION['var'] in test2.php Previous Comments: ------------------------------------------------------------------------ [2002-04-25 21:13:42] [EMAIL PROTECTED] in Release Candidates of 4.2.0, the Session, Get & Post still works. But after upgrading to 4.2.0, Session, Get & Post doesn't work at all. Such as some basic codes: <? //test1.php session_start(); session_register("var"); $var = 1234567; ?> <? //test2.php session_start() echo $var; <------- nothing outputed, worked in 4.1.2 well ?> --------------------------------------------- //t1.php <form action="./t2.php" method="Post"> Your Name: <input type="text" name="name" size="20"> <input type="submit" value=" OK "> </form> //t2.php Your name input: <? echo $name; ?> //Variable is null! Even: t2.php?name=Tommy Nothing shown........damn...... I've updated all modules from 4.1.2....php4apache.dll, php.ini, php4ts.dll...... ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=16839&edit=1