reshtml = '''Content-Type: text/htmln <HTML><HEAD><TITLE> CGI Demo </TITLE></HEAD> <BODY><H3>Friends list for: <I>%s</I></H3> Your name is: <B>%s</B><Paragraph> You have <B>%s</B> friends. </BODY></HTML>'''
form = cgi.FieldStorage() who = form['person'].value howmany = form['howmany'].value print reshtml % (who, who, howmany)
Related Scripts with Example Source Code in same category :