Connecting Tech Pros Worldwide Forums | Help | Site Map

Session varibles

www.phpbasic.com
Guest
 
Posts: n/a
#1: Jul 1 '08
I have a problem with session as:
if i write :
<?php
$_SESSION['id'] = 4;
$id = 7;
print $_SESSION['id']; // result: 4
?>
varible of $_SESSION['id'] is 4, but i write :
a.php
<?php
session_start();
$_SESSION['a'] = 4;
$a = 5;
echo '<a href="b.php">b.php</a>';
?>
b.php
<?php
session_start();
print $_SESSION['a']; // result: 5
?>
i use Apache 2.2.8, PHP 5.2.6 ( embed in AppServ 2.5.10)
help me!

Jerry Stuckle
Guest
 
Posts: n/a
#2: Jul 1 '08

re: Session varibles


www.phpbasic.com wrote:
Quote:
I have a problem with session as:
if i write :
<?php
$_SESSION['id'] = 4;
$id = 7;
print $_SESSION['id']; // result: 4
?>
varible of $_SESSION['id'] is 4, but i write :
a.php
<?php
session_start();
$_SESSION['a'] = 4;
$a = 5;
echo '<a href="b.php">b.php</a>';
?>
b.php
<?php
session_start();
print $_SESSION['a']; // result: 5
?>
i use Apache 2.2.8, PHP 5.2.6 ( embed in AppServ 2.5.10)
help me!
>
Check register_globals in your php.ini file. I suspect you will find it
is on. If so, turn it off - as it should be.


--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

Closed Thread