RE: [PHP-DB] Getting values back out of a URL

2003-01-23 Thread Snijders, Mark
forget that code just do this $parcel_query = SELECT * FROM land01_02_03 WHERE (PelNumber LIKE '$_GET[number]%') AND (OnerName1 LIKE '$_GET[owner]%') ; do this for seeing the url values: print_r($_GET); I am trying to get my values back out of a URL that has been passed from a page

RE: [PHP-DB] Getting values back out of a URL

2003-01-23 Thread Hutchins, Richard
When you go through the URL, you're using GET, not POST. ALl you really have to do is this: $parcel_query = SELECT * FROM land01_02_03 WHERE (PelNumber LIKE .$_GET[number].) AND (OnerName1 LIKE .$_GET[number].) ; Then you can drop the while loop that extracts the variables from the HTTP array.