|
|
Posted by joboils on 07/25/06 18:19
I'm trying to get a site to send e-mail containing the values passed
from a form.
$Query="INSERT INTO $TableName (id, title, firstname, surname, dob,
smoker, gender, tel_day, tel_eve, email, insurance, date_added,
borrower_type, amount, term, credit_history) VALUES ('', '$title',
'$firstname', '$surname', '$dob', '$smoker', '$gender', '$tel_day',
'$tel_eve', '$email', '$insurance', curdate(), '$borrower_type',
'$amount', '$term', '$credit_history')";
$Result=mysql_db_query ($DBName, $Query, $Link);
$date=date("jS F Y");
mail("admin@domain", "Query from the web site", "$date\nTitle -
$title\nFirstname - $firstname\nSurname - $surname\nDate of birth -
$dob\nSmoker - $smoker\nGender - $gender\nDay telephone number -
$tel_day\nEvening telephone number - $tel_eve\ne-mail -
$email\nContact re - $insurance\nBorrower type -
$borrower_type\nAmount - $amount\nTerm - $term\nCredit history -
$credit_history");
The e-mail messsages arrive but are missing the variables. (These get
filed Ok in the datbase, tho')
If a site is on a shared server and phpinfo says register_globals Off,
how can I get it to do what I want?
Navigation:
[Reply to this message]
|