> I am going to build some form elements to use as submitting to a DB
for  a
> guestbook. Then display those inputs on another page as the entries to
the
> guestbook. I also want to send the information they submit to an email
> address. I know how to manage sending simple form elements to an email
> (email,subject,body) and so on. But with a guestbook there will be a
few
> more elements in the body of my email.
> 
> Does anybody know of a very good way to format the body of an email
when
> form elements are sent into the body??

Form elements are just variables. Insert them into a string and make
that your message...

$message = "This is a message from {$_POST['name']}. They said this:
{$_POST['message']}";

etc...

---John W. Holmes...

PHP Architect - A monthly magazine for PHP Professionals. Get your copy
today. http://www.phparch.com/



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

Reply via email to