hi
i cant pass a same variable to multiplepages.. .
while passing variables in sessions
it shows warning and it doesn't pass to multiple pages
here the coding which i hve used
Registration.ph p
<?
session_start() ;
session_registe r("username") ;
$username=$_POS T['t3'];
?>
Registration1.p hp
<?
session_start() ;
echo "".$usernam e;
?>
update.php
<?
session_start() ;
echo "".$usernam e;
$q1="UPDATE `realtour` SET list='$protype' where uname='$usernam e'";
?>
in the above....
i cant get the value of username where used in Registration1.p hp
can anyone suggest me
i cant pass a same variable to multiplepages.. .
while passing variables in sessions
it shows warning and it doesn't pass to multiple pages
here the coding which i hve used
Registration.ph p
<?
session_start() ;
session_registe r("username") ;
$username=$_POS T['t3'];
?>
Registration1.p hp
<?
session_start() ;
echo "".$usernam e;
?>
update.php
<?
session_start() ;
echo "".$usernam e;
$q1="UPDATE `realtour` SET list='$protype' where uname='$usernam e'";
?>
in the above....
i cant get the value of username where used in Registration1.p hp
can anyone suggest me
Comment