CGI Web Python Tutorial

< HTML>

 Enter your first name:
 
 Enter your last name:

 
 


File: action.py
#!c:/Python25/python
import cgi
reshtml = """Content-Type: text/html\n

 Hello
 
  

Welcome to a Python script!


  You are identified as: %s
 
"""
form = cgi.FieldStorage()
lastname = form['lastname'].value
firstname = form['firstname'].value
message = firstname + " " + lastname
print reshtml % message