edward hage wrote:[color=blue]
> R. Rajesh Jeba Anbiah wrote:
>[color=green]
>> edward hage <edha@xs4all.nl> wrote in message
>> news:<3fd7a072$0$213$e4fe514c@news.xs4all.nl>...
>>[color=darkred]
>>> Hello ,
>>>
>>> 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?[/color]
>>
>>
>>
>>
>>
http://in2.php.net/manual/en/install...able-trans-sid
>>
>>
>>
http://in2.php.net/session See session.use_trans_sid[/color]
>
>
> 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.
>
>[/color]
Found out answer for who is interested. Kind of straightforward to use
session-data in next page by using FORM ACTION = "wisme2.php?<?=SID ?> "
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>