Jump to content

using javascript to submit form


zander1983

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.