zander1983 Posted June 8, 2011 Share Posted June 8, 2011 i've got this form <form method="post" name="imageForm" enctype="multipart/form-data" action=""> <label> <span class="labelText">Images</span> <input name="file" type="file" /> <span class="labelText"> </span> <input name="SubmitImg" type="submit" value="Upload" /> </label> </form> at the top of page, i have: if(isset($_POST['SubmitImg'])) { echo uploadImages("file", "", MAX_WIDTH, "./images/", $shopItemId); } So once the user clicks "Upload", the page submits and goes into the Post clause. Now i want to submit the page using javascript onchange and go into the Post clause. Im using onchange to call the function: function submitform() { document.imageForm.submit(); } The page submits but does not go into Post clause... Link to comment https://forums.phpfreaks.com/topic/238794-using-javascript-to-submit-form/ Share on other sites More sharing options...
Adam Posted June 10, 2011 Share Posted June 10, 2011 The submit button is only included in the POST data if you actually click it to submit the form. Use a different input to check if the form has been submitted. Link to comment https://forums.phpfreaks.com/topic/238794-using-javascript-to-submit-form/#findComment-1227857 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.