CRap LAYOUT
the prervious reply was yes fixed but horrible because you can only send a message no name or email. use this to enable users to send you there email and name plus there message.
<?php
include 'globals.php';
/*
-- Mobz Productions --
-- A Product of Mobz Productions --
-- For contacting game --
-- Created by M0B2 --
-- Contact.php --
--Fixed by Torin (tozza1000)--
*/
print "Staff Contact form:
";
if($_POST['mes'])
{
$to="YOUR EMAIL";
$subj = "YOUR GAME NAME Form";
$mess =$_POST['mes'];
$from = $_POST['email'];
$headers ="From: $from";
mail($to,$subj,$mess,$headers);
}
print "Your message has been sent to $to You will get a reply as soon as posible.
<a href='index.php>Back to game...</a>";
print "You are contacting ".$set['game_name']." Via email.
";
echo'
<form method="post" action="contact.php">
Name:
<input name="from" type="text">
Email:
<input name="email" type="text">
Message:
<textarea name="mes" rows="15" cols="40"></textarea>
<input type="submit" value="Send!"></form>';
$h->endpage();
?>