[PHP-DB] PHPSESSID how to append and access

2006-05-25 Thread Girish Agarwal
Hi All,
 I am using header(Location:
http://dv-medical/phpscripts/test.php;) function to hop from one Page to
Another in My Web Application
My Problem is I have been unable to get the exact syntax to append
the Session ID to the URL specified in the header so that it is available

If I am not mistaken then with the header function the Session ID is
not automatically appended eventhough enable_trans_sid is set to true.If I
am wrong then please guide me as to how I can access the session id.
My php.ini file has session.name has PHPSESSID.

Thanks,
Girish

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] PHPSESSID how to append and access

2006-05-25 Thread J R

On 5/25/06, Girish Agarwal [EMAIL PROTECTED] wrote:


Hi All,
 I am using header(Location:
http://dv-medical/phpscripts/test.php;) function to hop from one Page to
Another in My Web Application
My Problem is I have been unable to get the exact syntax to append
the Session ID to the URL specified in the header so that it is available



you could do this:
header(Location: http://dv-medical/phpscripts/test.php?sid=.session_id())


   If I am not mistaken then with the header function the Session ID is

not automatically appended eventhough enable_trans_sid is set to true.If I
am wrong then please guide me as to how I can access the session id.
My php.ini file has session.name has PHPSESSID.

Thanks,
Girish

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php





--
GMail Rocks!!!


RE: [PHP-DB] PHPSESSID how to append and access

2006-05-25 Thread Ford, Mike
On 25 May 2006 12:12, Girish Agarwal wrote:

 Hi All,
  I am using header(Location:
 http://dv-medical/phpscripts/test.php;) function to hop from
 one Page to
 Another in My Web Application
 My Problem is I have been unable to get the exact
 syntax to append
 the Session ID to the URL specified in the header so that it
 is available

  header(Location: http://dv-medical/phpscripts/test.php?.SID)

That's what the SID constant is for.  You can even use it with impunity when 
cookies are in use, since it is set to the empty string in that case.

Cheers!

Mike

-
Mike Ford,  Electronic Information Services Adviser,
Learning Support Services, Learning  Information Services,
JG125, James Graham Building, Leeds Metropolitan University,
Headingley Campus, LEEDS,  LS6 3QS,  United Kingdom
Email: [EMAIL PROTECTED]
Tel: +44 113 283 2600 extn 4730  Fax:  +44 113 283 3211 


To view the terms under which this email is distributed, please go to 
http://disclaimer.leedsmet.ac.uk/email.htm

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php