Re: [PHP] mailing forms and input into MySQL

2003-04-02 Thread Lowell Allen
> From: "Scott Miller" <[EMAIL PROTECTED]> > > I have a current php script that allows me to add/remove customer information > from a particular MySQL Database. What I would like to do, is when an > employee adds a customer, have some (if not all) of that information e-mailed > to a particular e-

Re: [PHP] mailing forms and input into MySQL

2003-04-02 Thread Kevin Stone
There is no trick to it. Query the database, build a string, send it off. $value) { $body .= "$column : $value\n"; } $body .= "\n"; } mail($to, $subject, $body, $headers); ?> HTH, Kevin - Original Message - From: "Scott Miller" <[EMAIL PROTECTED]> To: <[EMAIL PROTECT