[PHP] How can PHP 3.0.12 recognize semicolons as var delimiters in URL?

2001-05-14 Thread Christian Capito

Hello,

i'm using htdig 3.1.5 on a box with PHP 3.1.12

the program htsearch provides me with html, in which following URLs can be 
found:

http://myserver.de/search/results.php?words=sms;page=2

The problem is, the results.php script can't properly parse the URL and I 
can't use the variables $words or $page. I suppose this is because of the 
semicolons, because the same URL with '&' between the variables works.

How can I get php to correctly recognise the semicolons? Semicolons between 
variables are supposed to be valid HTTP links.

Thanks,

christian capito



-- 
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]




Re: [PHP] How can PHP 3.0.12 recognize semicolons as var delimiters in URL?

2001-05-14 Thread Christian Capito

on Monday 14 May 2001 09:59, Christian Capito quoth:

> How can I get php to correctly recognise the semicolons? Semicolons
> between variables are supposed to be valid HTTP links.

I just would like to let you all know that I have been able to solve the 
problem. I have put following entry into the .htaccess file in the directory

php3_arg_separator  ;  

And now it works!

chris capito

-- 
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]