WorldDrknss Posted August 28, 2007 Share Posted August 28, 2007 I am trying to use ; instead of & in my url strings. I set the arg_separator using ini_set('arg_separator.output', ';'); and checked to make sure it has changed using echo(ini_get('arg_separator.output')); but passing urls like http://domain.tld/?admin=news;sa=new does not work. And yes I am using $_GET['sa'] in my scripts. Quote Link to comment https://forums.phpfreaks.com/topic/67012-using-instead-of-in-urls/ Share on other sites More sharing options...
ToonMariner Posted August 28, 2007 Share Posted August 28, 2007 read the notes http://uk.php.net/urlencode Quote Link to comment https://forums.phpfreaks.com/topic/67012-using-instead-of-in-urls/#findComment-336052 Share on other sites More sharing options...
ReDucTor Posted August 28, 2007 Share Posted August 28, 2007 arg_seperator is only used for sessions. arg_separator.input and arg_separator.output should both be used http://www.php.net/manual/en/ini.core.php#ini.arg-separator.output Quote Link to comment https://forums.phpfreaks.com/topic/67012-using-instead-of-in-urls/#findComment-336056 Share on other sites More sharing options...
WorldDrknss Posted August 28, 2007 Author Share Posted August 28, 2007 arg_separator.input by default already includes the semi-colon Quote Link to comment https://forums.phpfreaks.com/topic/67012-using-instead-of-in-urls/#findComment-336092 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.