xploita Posted May 2, 2007 Share Posted May 2, 2007 for me to check if a form has been submitted.do i better use a hidden field,check for the value of the submit button or what? better = security wise. regards Link to comment https://forums.phpfreaks.com/topic/49712-check-form-submission/ Share on other sites More sharing options...
clown[NOR] Posted May 2, 2007 Share Posted May 2, 2007 you can use both hidden and the submit value... I only use hidden if there's anything special not included in the form I need store.. with the submit you do likte this <?php if (isset($_REQUEST['Submit'])) { // The form has been submitted } ?> Link to comment https://forums.phpfreaks.com/topic/49712-check-form-submission/#findComment-243774 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.