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'])) 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. 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 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
Archived
This topic is now archived and is closed to further replies.