[PHP] Re: changing session name

2002-09-10 Thread Erwin
Mohd_q wrote: > I want to change the default session name 'PHPSESSID' to say ex. > 'seid'. > > How can I do this without editing to the php.ini since I'm having a > site on a virtual host. http://www.php.net/session_name HTH Erwin -- PHP General Mailing List (http://www.php.net/) To unsubsc

[PHP] Re: changing session name

2002-09-09 Thread Luke Welling
> I want to change the default session name 'PHPSESSID' to say ex. 'seid'. > > How can I do this without editing to the php.ini since I'm having a site on > a virtual host. Try putting this at the start of your scripts: ini_set ('session.name', 'seid'); Luke Welling. -- PHP and MySQL Web Develo