>Print >> End_form;
>
>Name: $q->param("name")
>
>End_form
That's because you can't execute perl code within this construct.
It is essentially a double quoted string that just happens to span multiple
lines. So, this doesn't work just like:
print "Name $q->param('name')\n";
won't work the way you want it to.
You have to get the value in a variable first:
$name = $q->param('name');
print <<End_form;
Name: $name
End_form
---Larry
+------------------------------------------------------------------------+
| Larry Coffin, G.P.H. Watertown, MA |
| http://www.PointInfinity.com/lcoffin/ [EMAIL PROTECTED] |
+------------------------------------------------------------------------+
Money is the root of all evil, and man needs roots
-
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]