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. 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 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 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 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
Archived
This topic is now archived and is closed to further replies.