When I am passing a parameter through a href tag ... showinfo.php?City=$City
On the showinfo page I can request that query string by using this $QUERY_STRING
The only problem is that it returns
City=Des%20Moines
In my select statement when I refer to the query it is looking for...
Select * from table where City = 'City=Hampton'
Instead it should look like
Select * from table where City = 'Hampton'
How do I display just the value I pass rather than the name of the query and the value.
Thanks