I want to pass some $_SESSION data to another page.
I can pass PHPSESSID along using echo '<br /><a href="page2.php?' . SID
. '">page 2</a>';
However, I want to fill in a table with values and include PHPSESSID
with it. This does not work. I tried somethink like this:
<INPUT TYPE="Hidden" NAME="PHPSESSID" VALUE="<?=SID ?>">
and on the next page 'retrieve' the SID
$SID=$_POST["PHPSESSID"];
Now probably SID is not a normal variable , but how to get this right?
How is a call like http://page2.php?PHPSESSID=42ed32d .. processed , is
there a variabele PHPSESSID or a variabele SID that is being used?
http://in2.php.net/manual/en/install.configure.php#install.configure.enable-trans-sid
http://in2.php.net/session See session.use_trans_sid
--
"There are two kinds of people, those who do the work and those who
take the credit. Try to be in the first group; there is less
competition there." -- Indira Gandhi
Email: rrjanbiah-at-Y!com
I already read that page but it doesn't say anything about passing SID
in a frame.
I am using PHP 4.3.1 so the --enable-trans-sid is already enabled.Thanks.
This may be usefull for somebody.
<?php
session_start();
$_SESSION['data1']= 1 ;
$_SESSION['data2']='hello';
?>
<FORM ACTION="wisme2.php?<?=SID ?> " METHOD=POST>
<INPUT TYPE="SUBMIT" VALUE="Verder">
</FORM>