[Zope] [newbie] cgi-tasks howto? stupid question

Dieter Maurer dieter@handshake.de
Wed, 5 Jul 2000 21:58:33 +0200 (CEST)


Rajil Saraswat writes:
 > i tried out this but this isnt working  out for me. can you point out the
 > error.
 > 
 > my index_html file is
 > <dtml-var standard_html_header>
 > <FORM method=post action=http://localhost:8080/3inet/print>
 > Enter name: <INPUT type=text name=valname><BR>
 > 
 > <INPUT type=submit>
 > </FORM>
 > <dtml-var standard_html_footer>
 > 
 > 
 > the print file is
 > <dtml-var standard_html_header>
 > <h2> 
 > <dtml-var valname>
 > </h2>
 > <dtml-var standard_html_footer>
Try <dtml-var REQUEST> in you "print file".
You get a beautifully formated view of the complete HTTP Request
send by the browser.

Often this helps to analyse such problems.


Dieter