Re: [PHP] Beginner Questions regarding Mail and Forms

2007-02-12 Thread Matthias S.
message .= "Email: " .$email . "\n"; $message .= "Age: " . $age . "\n"; $message .= "Gender: " . $gender . "\n"; $message .= "Info: " . $info; try { mail("[EMAIL PROTECTED]", "Request", $message, _getMailHe

Re: [PHP] Beginner Questions regarding Mail and Forms

2007-02-12 Thread Matthias S.
AIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > On h, 2007-02-12 at 11:13 +0100, Matthias S. wrote: > > Hi there, > > > > I've got two bloody beginner questions: I've created a form with various > > text input fields. One is to hold a numeric v

[PHP] Beginner Questions regarding Mail and Forms

2007-02-12 Thread Matthias S.
Hi there, I've got two bloody beginner questions: I've created a form with various text input fields. One is to hold a numeric value (age). Upon submission, I try to retrieve the value of this field like this: $age = $_POST['_txtAge']; later, I use the $age variable to create a message... $mess