|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-04-25 21:13 UTC] shinjie at hotmail dot com
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......
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 19:00:02 2025 UTC |
I'm not sure if this is the problem but try it like this //test2.php session_start() session_register("var"); echo $var; <------- nothing outputed, worked in 4.1.2 well<? //test1.php session_start(); session_register("var"); $var = 1234567; ?> <? //test2.php session_start() echo $var; <------- nothing outputed, worked in 4.1.2 well ?> you cant register a $var, $var is empty try it so: <? //test1.php session_start(); $var = 1234567; session_register("var"); ?> <? //test2.php session_start() echo $var; // out: 1234567; ?> good luck