Click to See Complete Forum and Search --> : Submit?


admin
04-27-2003, 01:32 PM
What exactly happens when a submit button is pressed?
Does it get e-mail to somewhere? stored somewhere?

pyro
04-27-2003, 01:35 PM
When you press submit, all it does is submits the form. What happens from there depends on what you have in the form's action ( <form action="..."> ). Normally, you would submit it to a server side script, which will be able to do various things with the info from the form ( Save results to a database, email form results to you, etc. )