View Full Version : [SOLVED] Contact form
dylan
07-12-2009, 05:03 PM
Hello
How i can making for example: e-mail and name required, for my site contact form?
www.noregrenhold.no
thank you:)
freenicetemplates
07-13-2009, 11:18 AM
You can do something like this at the begining of contact.php :
if (empty($_POST['name']) || empty($_POST['email']) ) {
header("Location: ./index.htm?page=_error_message.htm");
}
dylan
07-13-2009, 06:29 PM
thanks , But i must making new page like: error_masage.htm?
and i have this text in contact.php:header("Location: ./thankyou.htm"); from befor must delet this or?
Wher i must put it? :
<?
$your_email = "post@post.com";
$headers= "From: ".$_POST['name']." <".$_POST['email'].">\r\n";
$headers.='Content-type: text/html; charset=utf-8';
mail($your_email, $_POST['subject'], "
<html>
<head>
<title>Contact Message</title>
</head>
<body>
Kontaktskjema<br><br>
Navn : ".$_POST['name']."<br>
E-post : ".$_POST['email']."<br>
Telefon : ".$_POST['telephone']."<br><br>
Emne : ".$_POST['subject']."<br>
Henvendelse : <br>".$_POST['message']."<br>
</body>
</html>" , $headers);
header("Location: ./thankyou.htm");
?>
can you help me please?
thanx
freenicetemplates
07-14-2009, 11:32 AM
Hi,
You'll find here (sendeail.php) a complete script to send a mail :
http://www.ibdhost.com/contact/
But don't forget to rename your page kontakt.html in kontakt.php.
dylan
07-15-2009, 03:41 PM
Hi
Thanks for your help, but I want me and change the current contact form (template 9 contact form).
is it possible to get help from you?
thank you so much
vBulletin® v3.8.1, Copyright ©2000-2025, Jelsoft Enterprises Ltd.