Global In Mail Form
Posted: Sat Oct 05, 2002 4:39 pm
Hi,
I can't make this work for some reason.
I've tried a lot of methods, but doesn't get it right. Anyone?
I can't make this work for some reason.
Code: Select all
<?php
$to = "zeceer@hotmail.com";
$subject = "Order";
$headers = "zeceer@hotmail.com";
$body =
Navn: $_POSTї'navn'];
Post adresse: $_POSTї'postadresse'];
Postnummer: $_POSTї'postnummer'];
Sted: $_POSTї'sted'];
Telefon: $_POSTї'telefon'];
E-mail: $_POSTї'email'];
mail($to,$subject,$body,"From: $headers");
header( "Location: index.php" );
?>