dylpotato Posted December 27, 2009 Share Posted December 27, 2009 EDIT: I fixed it! The problem was that IE can't test for a posted button. This is what I had: if (isset($_POST['searchbtn'])) Changed to: if (isset($_POST['word'])) Quote Link to comment https://forums.phpfreaks.com/topic/186447-php-mysql-search-not-working-in-ie/ Share on other sites More sharing options...
premiso Posted December 27, 2009 Share Posted December 27, 2009 IE can test for a posted button. If you want a definitive answer to your problem post your form code. Quote Link to comment https://forums.phpfreaks.com/topic/186447-php-mysql-search-not-working-in-ie/#findComment-984567 Share on other sites More sharing options...
PFMaBiSmAd Posted December 27, 2009 Share Posted December 27, 2009 In case you come back and read your thread. Php and mysql are executed on the server, not in the browser. If you have a case where something in a form does not submit in one browser, it is likely that the HTML of the form is not valid. You are most likely using an image as a submit button. If so, check out this link to see how you would get it to work the same in all browsers - http://us.php.net/manual/en/faq.html.php#faq.html.form-image Quote Link to comment https://forums.phpfreaks.com/topic/186447-php-mysql-search-not-working-in-ie/#findComment-984568 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.