Re: [PHP] --enable-trans-sid and forms

2001-04-27 Thread Larry Hotchkiss
Its my understanding that PHP appends the SID on the end of the URL regardless of weather its a form or not. If thats not happening for you, check your php.ini and make sure you have session.use_trans_sid enabled. Boget, Chris wrote: If you have PHP compiled with --enable-trans-sid,

RE: [PHP] --enable-trans-sid and forms

2001-04-27 Thread Boget, Chris
Its my understanding that PHP appends the SID on the end of the URL regardless of weather its a form or not. If thats not happening for you, check your php.ini and make sure you have session.use_trans_sid enabled. It is enabled. And it's being appended to most URLs (though, not

RE: [PHP] --enable-trans-sid and forms

2001-04-27 Thread Johnson, Kirk
Here is what I see in my FORM with --enable-trans-sid: FORM METHOD=POST ACTION=./test_formRun.php INPUT TYPE=HIDDEN NAME=PHPSESSID VALUE=cbf75d263416e77d773b1772f6e1be89 INPUT TYPE=IMAGE NAME=image SRC=submit.gif?PHPSESSID=cbf75d263416e77d773b1772f6e1be89 ALIGN=top PHP is adding the HIDDEN

RE: [PHP] --enable-trans-sid and forms

2001-04-27 Thread Boget, Chris
Here is what I see in my FORM with --enable-trans-sid: FORM METHOD=POST ACTION=./test_formRun.php INPUT TYPE=HIDDEN NAME=PHPSESSID VALUE=cbf75d263416e77d773b1772f6e1be89 PHP is adding the HIDDEN field with the session id. For some reason, it also appends it to the SRC attribute of the

RE: [PHP] --enable-trans-sid and forms

2001-04-27 Thread PHPBeginner.com
: Saturday, April 28, 2001 12:16 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] --enable-trans-sid and forms Here is what I see in my FORM with --enable-trans-sid: FORM METHOD=POST ACTION=./test_formRun.php INPUT TYPE=HIDDEN NAME=PHPSESSID VALUE=cbf75d263416e77d773b1772f6e1be89 INPUT TYPE=IMAGE NAME=image

RE: [PHP] --enable-trans-sid and forms

2001-04-27 Thread Johnson, Kirk
Thanks, Maxim, I hadn't seen the url_rewriter.tags entry in php.ini before. A search of the PHP manual only returns one unhelpful reference, tho. Any idea where to find some documentation on this? TIA Kirk -Original Message- From: PHPBeginner.com [mailto:[EMAIL PROTECTED]] have

RE: [PHP] --enable-trans-sid and forms

2001-04-27 Thread Boget, Chris
have you checked your PHP.INI file? it sais there what links to rewrite. This is what is in my .ini. url_rewriter.tags = a=href,area=href,frame=src,input=src,form=fakeentry ; added 3/2/01 Am I missing something here that I should have? I don't see anything in the docs about the above

RE: [PHP] --enable-trans-sid and forms

2001-04-26 Thread Johnson, Kirk
Chris, I'm not sure what is supposed to happen, but what is happening for me is that a HIDDEN field is added to my form with the sid as the value: INPUT TYPE=HIDDEN NAME=PHPSESSID VALUE=b8146b40fbc336b319eda9b7073691e0 Kirk -Original Message- From: Boget, Chris [mailto:[EMAIL