Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

multifunction buttom?

Status
Not open for further replies.

zeero

Programmer
Aug 4, 2004
60
US
Hi all, I was wondering if there was a way to have a button have 2 functions at once.

Basically, I have a form a user fills out as well as a picture file for them to upload all on one page. What I want is at the bottom of the screen to click a submit button and have the value do a "submit" and an "upload" command at once. Is this possible?
 
Hmmm, if it is all in a same form, then your page looks roughly like this:
Code:
<form>
 <input type="file" />
 <input type="text" />
 <input type="text" />
 <input type="text" />
 <input type="submit" />
</form>
This button will submit all the values, the uploaded picture and the text fields, it is up to you to read them out correctly on the next page.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top