undertaker Posted March 10, 2011 Share Posted March 10, 2011 I have a php code file test.php with html form <form method="post" id="something" action="upload.php"> inputs... and other stuff </form> So there i also have a upload.php file which includes a php code which does something with the information which is inputted by user. Now i want to ask you, is there an option that browser does not redirect to upload.php when i press submit button. You see, i would include the upload code in the test.php itself, but i cant, because the code executes every time i refresh, without even pressing the submit button (mysql INSERT). So the only way is to use another file when button is pressed but then it redirects me, what i dont want. Link to comment https://forums.phpfreaks.com/topic/230252-post-help/ Share on other sites More sharing options...
Mahngiel Posted March 10, 2011 Share Posted March 10, 2011 you need to use $_REQUEST click me Link to comment https://forums.phpfreaks.com/topic/230252-post-help/#findComment-1185745 Share on other sites More sharing options...
litebearer Posted March 10, 2011 Share Posted March 10, 2011 You can post to self, then at top of page check to see if the form has been submitted. if yes, cleanse and insert data, if no show form Link to comment https://forums.phpfreaks.com/topic/230252-post-help/#findComment-1185746 Share on other sites More sharing options...
Mahngiel Posted March 10, 2011 Share Posted March 10, 2011 if($_SERVER['REQUEST_METHOD'] == "POST") Link to comment https://forums.phpfreaks.com/topic/230252-post-help/#findComment-1185748 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.