> print "<form name=\"test\" action=\"http://www.somewhere.com\";>\n";
> print "   <input type=\"text\" name=\"frage_text\" size=\"100\"
> value=\"$frage_text\" />\n";
> print "</form>\n";

This wasn't really the question, but... 
If you have to write html within perl, use qq( ) instead of "".
It's a lot easier to read, and much less error prone.

ie,
print qq(
<form name="test" action="http://www.somewhere.com";>
    <input type="text" name="frage_text" size="100" value="$frage_text" />
</form>
);



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to