Re: [PHP] Another how do i question

2001-07-23 Thread Matt Greer
on 7/23/01 6:25 PM, Kyle Smith at [EMAIL PROTECTED] wrote: I made this code for a simple for (the end of it) but what do i change in the $message variable so there is a new line between each other variable in $message (ive tried $name. br. $last_name and. happens) Did you try

Re: [PHP] Another how do i question

2001-07-23 Thread Matt Greer
on 7/23/01 10:49 AM, Matt Greer at [EMAIL PROTECTED] wrote: on 7/23/01 6:25 PM, Kyle Smith at [EMAIL PROTECTED] wrote: I made this code for a simple for (the end of it) but what do i change in the $message variable so there is a new line between each other variable in $message (ive tried

RE: [PHP] Another how do i question

2001-07-23 Thread Patrick Lynch
Unless you are sending HTML mail, you need to use newline - not BR ?php $email = [EMAIL PROTECTED]; $subject = Mini survey; $message = $name . \n . $last_name . \n . $age . \n . $system . \n . $res . \n . $cpu . \n . $comments; mail($email, $subject, $message); ? Best Regards, Patrick Lynch.