Page 1 of 1

[SOLVED] Session ID and URL

Posted: Mon Dec 13, 2004 1:45 pm
by brockies
Hello everyone, I'm new to PHP so please forgive my ignorance, but I'm a bit stuck. Basically, I want to be abale to remove the long session ID in the url. Does anybody know how I can do this?

Many Thanks.

Posted: Mon Dec 13, 2004 2:37 pm
by rehfeld
you can do this 3 ways, basically you need to disable

session.use_trans_sid = Off


you can do this in
php.ini
.htaccess

or in the script itself using ini_set()

Thanks

Posted: Fri Mar 04, 2005 4:34 am
by brockies
This worked! many thanks!