Hi,
I have 2 variables:
<?
$email = "you@yourhost.com";
$bodytext = "my body text here";
?>
I want to show them both as a field value in a form:
<?
echo "<form action=\"formmail.pl\">
Email: <input type=\"text\" name=\"email\" size=\"38\" value=\"$email\"> <br><br>\n
<textarea cols=40 rows=10 value=\"$bodytext\"></textarea> <br>\n
<form>";
?>
The email address turns up fine, but the textarea does not show $bodytext (or anything else). What could be the problem?