Could somebody help me with my submission page code?
-
Hi. The problematic page is here:
I need the message box to be wayyyyy bigger but where do I add this in the code. I’m a total noob.
Here’s the html code:
<form name=”contact_form” action=”contact.php” method=”get”>
<table width=”456″ border=”0″ cellpadding=”0″ cellspacing=”0″ bgcolor=”F7F5F2″>
<tr>
<td height=”60″><img src=”images/tit_18.gif” width=”405″ height=”23″ style=”margin-left:24px “></td>
</tr>
<tr>
<td height=”28″ valign=”top”><table width=”456″ border=”0″ cellspacing=”0″ cellpadding=”0″>
<tr>
<td width=”124″ align=”right” class=”text_1″>Your name:</td>
<td width=”26″><img src=”images/spacer.gif” width=”1″ height=”1″></td>
<td><input name=”your_name” type=”text” class=”form_1″></td>
</tr>
</table></td>
</tr><tr>
<td height=”400″ valign=”top”><table width=”656″ border=”0″ cellspacing=”0″ cellpadding=”0″>
<tr>
<td width=”124″ align=”right” valign=”top” class=”text_1″ style=”padding-top:3px “>Message:</td>
<td width=”26″><img src=”images/spacer.gif” width=”1″ height=”1″></td>
<td><textarea name=”message” class=”form_2″></textarea></td>
</tr>
</table></td>
</tr>
<tr>
<td valign=”top”>Share My Story </td>
</tr>
</table><!– –>
</form>AND the PHP is here:
<?
$subject=”from “.$_GET[‘your_name’];
$headers= “From: “.$_GET[‘your_email’].”\n”;
$headers.=’Content-type: text/html; charset=iso-8859-1′;
mail(“[email protected]”, $subject, “
<html>
<head>
<title>New Story</title>
</head>
<body>“.$_GET[‘message’].”
</body>
</html>” , $headers);
echo (“BEVERLY’S BURLAP CLAM SATCHEL! We appreciate your submission…”);
?>
<script>
resizeTo(600, 600)</script>
Thanks so much in advance!
- The topic ‘Could somebody help me with my submission page code?’ is closed to new replies.