The HTML would be having problems because PHP would compile this:

--
<?
print '<INPUT TYPE="TEXT" NAME="savings" VALUE="' .
$data["SAVINGS"] . "'>";
?>
--

as:

--
<INPUT TYPE="TEXT" NAME="savings" VALUE="'>
--

Note VALUE's quotes: " and '. Try with this:

--
<?
print '<INPUT TYPE="TEXT" NAME="savings" VALUE="' .
$data["SAVINGS"] . '">';
?>
--

"Alexis N. Mueller" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Dan,
>
> Thanks for replying so fast.. I tried it out right away.
>
> The script part of it didn't seem to give me much grief, however the html
> part of it seems to be having issues
> with the combination of single quotes (') and double qouotes ("), or maybe
> it's the order, or a linebreak in the email... i don't know...
>
> <?
> print '<INPUT TYPE="TEXT" NAME="savings" VALUE="' .
> $data["SAVINGS"] . "'>";
> ?>
>
> --------



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to