I am playing with using PATH_INFO for variables, like the zend.com article, I like 
this but I want SID to follow a simmilar path. ie.

index.php?article=1234&PHPSESSID=xxxxxx

would be

index.php/article/1234/PHPSESSID/xxxxxx

but Im getting

index.php/article/1234?PHPSESSID=xxxxxx

is there a simple way to tell php to use the new format? other then 

// top
ob_start();

...

// bottom
echo ereg_replace("?PHPSESSID=". session_id(), "/PHPSESSID/". session_id(), 
ob_get_contents());

oi, what a mess ....


-- 

 Chris Lee
 [EMAIL PROTECTED]




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to