in reply to HTTP POST Problems...
Try to echo the data from the POST operation back to the browser. For your application, something like the following will probably work.
But you may want to consider CGI if you continue to have problems.if ($content_length>0) { print "Content-Type: text/html;\n\n"; while (<$client>) { print "$_<br>\n"; } }
metadoktor
"The doktor is in."
|
|---|