I need 1, Post. please.
+Rep if u do
Printable View
I need 1, Post. please.
+Rep if u do
If you offer a small payment i could code one is easily customisable via CSS, valid XHTML and saves the messages into an Admin Panel :)
www.techtuts.com
php coding >> near bottom xD
THYBAG.CO.UK the best site around ;P
Ok here is a contact us script:
Hope this helps!PHP Code:<?php
if ($_POST['submit']){
$name = strip_tags($_POST['name']);
$email = strip_tags($_POST['email']);
$comments = strip_tags($_POST['comments']);
$ip = $_SERVER['REMOTE_ADDR'];
$to = "YOUR EMAIL";
$subject = "Contact us";
$headers = "From: $email";
$message = "Contact us reply:
Name: $name
Email: $email
IP: $ip
Comments: $comments";
mail($to,$subject,$message,$headers);
echo "Sent!";
}
else
{
?>
<form method="post">
Name: <input type="text" name="name"><br>
Email: <input type="text" name="email"><br>
Comments: <textarea name="comments"></textarea><br>
<input type="submit" name="submit" value="Send!">
</form>
<?
}
?>
Not that hard.. simple mail() function..
It you want to go really advanced make it insert into a MySQL Database then pull it out and be able to reply to it delete it ETC :)