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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.