|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: |
====HTML FORM====
<h6>Contact Form</h6>
<form name="contact_form" method="post" action="contact.php">
<table width="700" border="0" cellpadding="0" cellspacing="0" bgcolor="#F7F5F2">
<tr>
<td height="15" style="margin-left:24px"></td>
</tr>
<tr>
<td height="28" valign="top"><table width="656" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="224" 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="28" valign="top"><table width="656" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="224" align="right" class="text_1">E-mail address:</td>
<td width="26"><img src="images/spacer.gif" width="1" height="1" /></td>
<td><input name="your_email" type="text" class="form_1" /></td>
</tr>
</table></td>
</tr>
<tr>
<td height="28" valign="top"><table width="656" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="224" align="right" class="text_1">Seclect Category:</td>
<td width="26"><img src="images/spacer.gif" width="1" height="1" /></td>
<td><SELECT NAME="Cat">
<OPTION VALUE="VALUE">Choose a Destination...</OPTION>
<OPTION VALUE="Feedback">Feedback</OPTION>
<OPTION VALUE="Legal">Legal</OPTION>
<OPTION VALUE="Advertising">Advertising</OPTION>
<OPTION VALUE="Partnership">Partnership</OPTION>
<OPTION VALUE="Press & Media">Press & Media</OPTION>
</SELECT></td>
</tr>
</table></td>
</tr>
</tr>
<tr>
<td height="65" valign="top"><table width="656" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="224" 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"><input type="button" value="Submit"> <input type="reset" class="btn" value=" Reset form " name="Clear"></td>
</tr>
<tr>
<td height="15" style="margin-left:24px"></td>
</tr>
</table>
</form>
====PHP Script====
<?
if ($_POST["contact_form"]<>'') {
$ToEmail = 'xxxxx@xxxxxxx.com';
$EmailSubject = 'Some Body Has Contacted You.... ';
$mailheader = "From: ".$_POST["your_email"]."\r\n";
$mailheader .= "Reply-To: ".$_POST["your_email"]."\r\n";
$mailheader .= "Content-type: text/html; charset=iso-8859-1\r\n";
$MESSAGE_BODY = "Full Name: ".$_POST["your_name"]."<br>";
$MESSAGE_BODY .= "E-Mail: ".$_POST["your_email"]."<br>";
$MESSAGE_BODY .= "Contact Purpose: ".$_POST["Cat"]."<br>";
$MESSAGE_BODY .= "Message Left: ".$_POST["message"]."<br>";
mail($ToEmail, $EmailSubject, $MESSAGE_BODY, $mailheader) or die ("Failure");
}
?>
Your message was sent
|
Advertisement
| Hall of Fame |