Here is my Html Code and my Contact.php
This is My code in my html
<td height="345" valign="top">
<form style="margin:0; padding:0; " action="contact.php" method="get" id="form">
<table width="476" style="height:100% " border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="238" valign="top">
<div style="margin:29px 0px 0px 23px; ">
<img src="images/6tx2.gif" alt=""><br>
<img src="images/spacer.gif" alt="" width="1" height="21"><br>
Your Namebr>
<input type="text" class="form"><br>
<img src="images/spacer.gif" alt="" width="1" height="15"><br>
Your Emailbr>
<input type="text" class="form"><br>
<img src="images/spacer.gif" alt="" width="1" height="16"><br>
Your Subject Linebr>
<input type="text" class="form"><br>
</div>
</td>
<td width="238" valign="top">
<div style="margin-top:63px; ">
Your Messagebr>
<textarea rows="5" cols="5" class="textarea" style="overflow:hidden "></textarea><br>
<div style="margin:5px 35px 0px 0px; " align="right">
<a href="" onclick="document.getElementById('form').reset()">reset</a><img src="images/spacer.gif" alt="" width="16" height="1"><a href="" onclick="document.getElementById('form').submit()">submit</a>
</div>
</div>
Theirs is not Image Link you mentioned above that causes my page to be off in alignment.
My Contact.PHp looks like this
<?
$subject="from ".$_GET['Your_Name'];
$headers= "From: ".$_GET['Your_Email']."\n";
$headers.='Content-type: text/html; charset=iso-8859-1';
mail("defina8953@rogers.com", $subject, "
<html>
<head>
<title>Septagon Studios: Contact Form</title>
</head>
<body>
<br>
".$_GET['Your_Message']."
</body>
</html>" , $headers);
echo ("Your message was successfully sent!");
?>
__________________








Bookmarks