<HTML>
<TITLE>Choose your Pizza</TITLE>
<FORM ACTION="action.py">
<H1>What size pizza would you like?</H1><BR>
<input type="radio" name="size" value="Personal"> Personal<br>
<input type="radio" name="size" value="Medium" checked> Medium<br>
<input type="radio" name="size" value="Large"> Large<BR><BR>
<H1>What kind of toppings?</H1><BR>
<INPUT TYPE=CHECKBOX NAME="mushrooms" >mushrooms<BR>
<INPUT TYPE=CHECKBOX NAME="greenpeppers">green peppers<BR>
<INPUT TYPE=CHECKBOX NAME="olives" >olives<BR>
<INPUT TYPE=CHECKBOX NAME="onions" >onions<P>
How do you want to pay for it?
<select NAME="payment">
<option>Cash</option>
<option>Check</option>
<option>Credit Card</option>
</select><BR><BR>
Enter your name: <INPUT TYPE=TEXT NAME="name"><BR>
Enter your password: <INPUT TYPE=PASSWORD NAME="password"><BR><BR>
<INPUT TYPE=SUBMIT VALUE="submit">
</FORM>
</HTML>
File: action.py
#!c:/Python25/python
import cgi
def gen_html_header() :
print "Content-Type: text/html\n\n"
print "<HTML>"
def gen_html_trailer() :
print "</HTML>"
form = cgi.FieldStorage()
gen_html_header()
for e in form :
print "Received " + e + " = ["+form.getvalue(e)+"]<BR>"
|