Re: [PHP] syntax error using header and SID

2003-09-04 Thread Tyler Lane
On Thu, 2003-09-04 at 09:33, bob pilly wrote: > Hi all > > Can someone tell me what the correct syntax is to pass > a Session ID via the header redirect is? Im trying: > > header( "Location: page2.php? (SID)?>" ) header( "Location: page2.php?". strip_tags( SID ) ); the problem you are having is

Re: [PHP] syntax error using header and SID

2003-09-04 Thread Chris Hayes
At 18:33 4-9-03, you wrote: Hi all Can someone tell me what the correct syntax is to pass a Session ID via the header redirect is? Im trying: header( "Location: page2.php?" ) You are making a row of mistakes that suggest it is a good idea to read a bit on PHP syntax and how variables are passed o

Re: [PHP] syntax error using header and SID

2003-09-04 Thread John W. Holmes
bob pilly wrote: Hi all Can someone tell me what the correct syntax is to pass a Session ID via the header redirect is? Im trying: header( "Location: page2.php?" ) but it isnt working for me and all the docs i can find just deal with tagging it to the end of a hyperlink. header("Location: page2.ph

[PHP] syntax error using header and SID

2003-09-04 Thread bob pilly
Hi all Can someone tell me what the correct syntax is to pass a Session ID via the header redirect is? Im trying: header( "Location: page2.php?" ) but it isnt working for me and all the docs i can find just deal with tagging it to the end of a hyperlink. Any help would be greatly appreciated!