#!/home/pirsqrtc/Python26/bin/python import cgi form = cgi.FieldStorage() name = form.getvalue('name', 'world and ralph') print 'Content-type: text/plain' print print 'Hello, %s!' % name