Ross wrote:
> How can I get this line to work
> 
> $mail_body .= "<font size=\"2\" face=\"Verdana, Arial, Helvetica, 
> sans-serif\"> Title: $row['title'] </font>";
> 
> The $row['title'] variable is the problem.

Drop the quotes when you are inside a quoted string.
$mail_body .= "... Title: $row[title] </font>";

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to