Re: php4 url parameters and arguments problem

2001-12-12 Thread Meir Kriheli
On Wednesday 12 December 2001 14:37, Patrick Hsieh wrote: > Hello, > I have a testing url like: > http://host.domain.com/test.php?111+222+&test_par=aaa&; > > then in test.php, I can get > 111 as argv0 > 222 as argv1 > &test_par=aaa& as argv3 > > but I can't get the value of $test_par, which should

php4 url parameters and arguments problem

2001-12-12 Thread Patrick Hsieh
Hello, I have a testing url like: http://host.domain.com/test.php?111+222+&test_par=aaa&; then in test.php, I can get 111 as argv0 222 as argv1 &test_par=aaa& as argv3 but I can't get the value of $test_par, which should be aaa I found when I get the php4 source and compile myself, it is ok. Bu