in reply to RE: I almost got it!
in thread I almost got it!

Ik! Sorry, that was my first post ever ... I didn't realize i had to format the code myself. ________________________
#!/usr/bin/perl

use CGI;

$q = new CGI;    
$query = $q->Vars;   

print "Content-type: text/html\n\n";
$text=$query->{message};
print "<HTML><BODY>
$text
</BODY></HTML>";
_______________________ Hope that works :-)
  • Comment on RE: RE: I almost got it! (code reformatted)