message of the mail. I know how the to put html in the message:

$message = '

in stead of
print "<td> $gebruikerbooks </td>";

do


$message .= "<td> $gebruikerbooks </td>";


A little clarification:
* Just instead of echoing it directly to the browser, add it to your variable $message.
* "$message.='bla';" is a shortcut for "$message.=$message . 'bla'; "
* the . is the glue for strings.


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



Reply via email to