Join.php (not full page just the form)
________________________________________________
Code: Select all
<form method="get" action="mail.php">
<tr><td class="join">Real Name : <input type="text" name="text"></td></tr>
<tr><td class="join">SOCOM name : <input type="text"></td></tr>
<tr><td class="join">e-Mail address : <input type="text"></td></tr>
<tr><td class="join">Aim Name : <input type="text"></td></tr>
<tr><td class="join">language(s) you speak: <input type="text"></td></tr>
<tr><td class="join">Your time zone : <input type="text"></td></tr>
<tr><td class="join">Channel you play in : <input type="text"></td></tr>
<tr><td class="join">When you Started Playing : <input type="text"></td></tr>
<tr><td class="join">Previous clan experience(s) : <input type="text"></td></tr>
<tr><td class="join">Desired A\* user name : <input type="text"></td></tr>
<tr><td class="join">Comments : <textarea rows="3" cols="30"></textarea></td></tr>
<tr><td> </td></tr>
<tr><td align="center"><input type="submit" value="Submit"> <input type="reset"></td></tr>
</form>__________________________________________________
Code: Select all
<html>
<body>
<?php
$to = "Gavin<gavinbsocom@hotmail.com>";
$subject = "test";
$body = "something";
$from = "From: Me <gavinbsocom@hotmail.com>\n";
$cc = "Cc: Dude<gavinbsocom@hotmail.com>\n";
$bcc = "Bcc: Ghost<gavinbsocom@hotmail.com>\n";
$headers = $from . $cc . $bcc;
mail($to, $subject, $body, $headers);
?>
</bodY>
</html>