strange query.

2002-07-17 Thread James Campbell
Hi Everyone I'm having a spot of bother with a query string. The program below attempts to mimic a web form. It should post the value of 'QUERY ..' to the cgi in $location. What is actually happening is that 'QUERY ..' itself is being sent as the value. I copied the name 'QUERY ..' from the

Re: strange query.

2002-07-17 Thread Yasen Petrov
Use double quotes ( ) for surrounding, instead of apostrophy ( ' ). Thus it will interpret it and not translate it litterally. -- Best Wishes, Yasen Petrov ICQ 163 671 835 James Campbell [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi Everyone I'm having

Re: strange query.

2002-07-17 Thread John W. Krahn
James Campbell wrote: Hi Everyone Hello, I'm having a spot of bother with a query string. The program below attempts to mimic a web form. It should post the value of 'QUERY ..' to the cgi in $location. What is actually happening is that 'QUERY ..' itself is being sent as the value.