Here is my Html Code and my Contact.php
This is My code in my html
[html]
<td height="345" valign="top">
<form style="margin:0 ; padding:0; " action="contact .php" method="get" id="form">
<table width="476" style="height:1 00% " border="0" cellspacing="0" cellpadding="0" >
<tr>
<td width="238" valign="top">
<div style="margin:2 9px 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"><b r>
<img src="images/spacer.gif" alt="" width="1" height="15"><br >
Your Emailbr>
<input type="text" class="form"><b r>
<img src="images/spacer.gif" alt="" width="1" height="16"><br >
Your Subject Linebr>
<input type="text" class="form"><b r>
</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:5 px 35px 0px 0px; " align="right">
<a href="" onclick="docume nt.getElementBy Id('form').rese t()">reset</a><img src="images/spacer.gif" alt="" width="16" height="1"><a href="" onclick="docume nt.getElementBy Id('form').subm it()">submit</a>
</div>
</div>
[/html]
Theirs is not Image Link you mentioned above that causes my page to be off in alignment.
My Contact.PHp looks like this
[code=php]
<?
$subject="from ".$_GET['Your_Name'];
$headers= "From: ".$_GET['Your_Email']."\n";
$headers.='Cont ent-type: text/html; charset=iso-8859-1';
mail("defina895 3@rogers.com", $subject, "
<html>
<head>
<title>Septag on Studios: Contact Form</title>
</head>
<body>
<br>
".$_GET['Your_Message']."
</body>
</html>" , $headers);
echo ("Your message was successfully sent!");
?>
[/code]
This is how my page looks
This is My code in my html
[html]
<td height="345" valign="top">
<form style="margin:0 ; padding:0; " action="contact .php" method="get" id="form">
<table width="476" style="height:1 00% " border="0" cellspacing="0" cellpadding="0" >
<tr>
<td width="238" valign="top">
<div style="margin:2 9px 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"><b r>
<img src="images/spacer.gif" alt="" width="1" height="15"><br >
Your Emailbr>
<input type="text" class="form"><b r>
<img src="images/spacer.gif" alt="" width="1" height="16"><br >
Your Subject Linebr>
<input type="text" class="form"><b r>
</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:5 px 35px 0px 0px; " align="right">
<a href="" onclick="docume nt.getElementBy Id('form').rese t()">reset</a><img src="images/spacer.gif" alt="" width="16" height="1"><a href="" onclick="docume nt.getElementBy Id('form').subm it()">submit</a>
</div>
</div>
[/html]
Theirs is not Image Link you mentioned above that causes my page to be off in alignment.
My Contact.PHp looks like this
[code=php]
<?
$subject="from ".$_GET['Your_Name'];
$headers= "From: ".$_GET['Your_Email']."\n";
$headers.='Cont ent-type: text/html; charset=iso-8859-1';
mail("defina895 3@rogers.com", $subject, "
<html>
<head>
<title>Septag on Studios: Contact Form</title>
</head>
<body>
<br>
".$_GET['Your_Message']."
</body>
</html>" , $headers);
echo ("Your message was successfully sent!");
?>
[/code]
This is how my page looks
Comment