fighnight Posted December 13, 2007 Share Posted December 13, 2007 Hi I am coding in PHP and I was wondering when I submit with the following code, the submit feature doesn't actually submit/ onClick="this.disabled = 'true'; this.value = 'Loading..'; this.form.submit();" I have a $_POST[submit] function but it doesnt work Link to comment https://forums.phpfreaks.com/topic/81456-onclick-submiting/ Share on other sites More sharing options...
rajivgonsalves Posted December 13, 2007 Share Posted December 13, 2007 The $_POST['submit'] will only come if the submit button is click to get around this just put a hidden field in the form and use that hidden field for submission checks Link to comment https://forums.phpfreaks.com/topic/81456-onclick-submiting/#findComment-413539 Share on other sites More sharing options...
fighnight Posted December 13, 2007 Author Share Posted December 13, 2007 When I add hidden value, it doesn't work for submitting on IE Link to comment https://forums.phpfreaks.com/topic/81456-onclick-submiting/#findComment-413540 Share on other sites More sharing options...
fighnight Posted December 13, 2007 Author Share Posted December 13, 2007 My full coding form method="post" action="map.php" name="submit"> <input type="hidden" name="hidden" value="submit"> <input type="submit" name="submitButton" value="Login" onClick="this.disabled = 'true'; this.value = 'Loading..'; this.form.submit();"></form> Link to comment https://forums.phpfreaks.com/topic/81456-onclick-submiting/#findComment-413543 Share on other sites More sharing options...
rajivgonsalves Posted December 13, 2007 Share Posted December 13, 2007 try this <form method="post" action="map.php" name="submit"> <input type="hidden" name="submitform" value="submit"> <input type="submit" name="submitButton" value="Login" onClick="this.disabled = 'true'; this.value = 'Loading..'; this.form.submit();"></form> and in your php code check for if (isset($_POST['submitform'])) { that should work Link to comment https://forums.phpfreaks.com/topic/81456-onclick-submiting/#findComment-413544 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.