PM me,I am currently making one for you, OK be about 5 mins
OK, now look:
Note: nothink has been tested
Main form>
<form action="send_comment.php" method=POST>
<table>
<tr>
<td> Your Name<td/>
<td><input type="text" name="name" size="30"></td>
</tr>
<tr>
<td Your email </td>
<td><input type="text"name="email" size="30"></td>
</td>
<tr>
<td>What job you want</td>
<td>
<select name="App forrm">
<option value="edit here">Edit what job here</option>
<option value="edit here">Edit what job here</option>
<option value="edit here">Edit what job here</option>
<option value="edit here">Edit what job here</option>
<option value="edit here">Edit what job here</option>
<option value="edit here">Edit what job here</option>
<option value="edit here">Edit what job here</option>
<option value="edit here">Edit what job here</option>
</select>
</td>
</tr>
<tr>
<td> Any other info you would like to add.</td>
<td><textarea rows=4 cols=50
name="comments" enter your comments here
</textarea></td>
</tr>
</table>
<input type="submit" value="send comments">
</form>
Save this as send_comment.php.
<?php
$body ="these comemnts where sent to us";
foreach($_post as $field => $value) {
$body .=sprintf("%s =%s/n" , $field, $value");
}
main("
[email protected]", "comments where sent to us", $body
'From: "Apps" <
[email protected]>');
?>
<h1>Thank you</h1>