CSPP552: Web Programming, Forms part 6
Form actions
- An action is the base URL which is retrieved when you submit a form
- Specified with the action attribute in the <form> tag:
<form method=get action=http://www.classes.cs.uchicago.edu/>
<input type=submit value="Uh.. take me to the classes web page"><br>
</form>
Next