|
Hello all. This is part of a form handler, sending the information via email:
$forminfo =
($_POST ['name'] . "\r" .
$_POST ['e-mail'] . "\r" .
$_POST ['instrument'] . "\r" .
$_POST ['doublings'] . "\r" .
$_POST ['experience'] . "\r" .
$_POST ['venue'] . "\r\n" .
date("M-d-Y") . "\r\n\n");
atm the email will just show up with the information from the form itself:
name
e-mail
instrument
doublings
experience
venue
But i want it to be labelled when it gets put into the emailso it actually makes sense, coming out thus:
Name:name
E-mail:e-mail
Doublins:doublings
you get the picture....
I've tried all sorts but can't seem to be able to do it. Whenever I insert anything it comes up with error messages!
any suggestions?
|