I have a php document that queries a MySQL database. On localhost
that page shows up fine, but the form is not processed. I can see the
browser posting the form, but the same page comes back without running
the query.
My query look something like:
$sql = "SELECT product FROM products'";
When the form is filled out it _should_ look like:
$sql = "SELECT product FROM products WHERE product LIKE '%%".
$keyword."'";
I do an echo $sql and Opera and Firefox show the second query, whilst
IE7 on localhost shows only the first, as if the form had not been
processed at all. IE7 on the production server works just fine.
I am perplexed. The URL for the production page is at [http://
josefrotter.com/products.php] if anyone wants to check that out. The
source is the same for both beta and production.
TIA