Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

pass PHPSESSID in FORM-tag

1 view
Skip to first unread message

edward hage

unread,
Dec 10, 2003, 5:39:11 PM12/10/03
to
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?


R. Rajesh Jeba Anbiah

unread,
Dec 11, 2003, 12:02:01 AM12/11/03
to
edward hage <ed...@xs4all.nl> wrote in message news:<3fd7a072$0$213$e4fe...@news.xs4all.nl>...

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

edward hage

unread,
Dec 11, 2003, 2:43:26 PM12/11/03
to
R. Rajesh Jeba Anbiah wrote:
> edward hage <ed...@xs4all.nl> wrote in message news:<3fd7a072$0$213$e4fe...@news.xs4all.nl>...
>
>>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?
>
>
> http://in2.php.net/manual/en/install.configure.php#install.configure.enable-trans-sid
>
> http://in2.php.net/session See session.use_trans_sid
>

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.


edward hage

unread,
Dec 11, 2003, 4:12:45 PM12/11/03
to
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>

0 new messages