Ummm, hi
There is an error in an email form I have, it is for registration, I was wondering, could someone make a php code that will send this email form?
The email form is this code:
<html>
<head>
<title>Final Hosting ::: Register</title>
<!--#include file="template.txt"-->
<br>
<center><font color="white">If you want to register, fill out this form.
</font><form action="email.php" method="post">
<TABLE width="40%">
<tr bgcolor="#4682B4">
<td>Username: </td>
<td><input type="text" name="username"></td>
</tr>
<tr bgcolor="#4682B4">
<td>If Username taken I will have: </td>
<td><input type="text" name="ifusername"></td>
</tr>
<tr bgcolor="#4682B4">
<td>Password: </td>
<td><input type="text" name="pass"></td>
</tr>
<tr bgcolor="#4682B4">
<td>Confirm Password: </td>
<td><input type="text" name="cpass"></td>
</tr>
<tr bgcolor="#4682B4">
<td>Email: </td>
<td><input type="text" name="email"></td>
</tr>
<tr bgcolor="#4682B4">
<td>Wanted Uploader(ftp or file uploader, file uploder not working yet): </td>
<td><input type="text" name="uploader"></td>
</tr>
<tr bgcolor="#4682B4">
<td>Usage.(Storage, Site, etc.): </td>
<td><input type="text" name="usage"></td>
</tr>
<tr bgcolor="#4682B4">
<td>Wanted Sitename: </td>
<td><input type="text" name="sitename"></td>
</tr>
<tr bgcolor="#4682B4">
<td>If sitename taken, I will have: </td>
<td><input type="text" name="ifsite"></td>
</tr>
<tr bgcolor="#4682B4">
<td>How did you find us?(optional): </td>
<td><textarea rows="4" name="find"></textarea></td>
</tr>
</table>
<input type="submit" value="Submit">
</form>
</body>
</html>
I want a php file that will send the email giving them a email success if everything was put in right and an email will come to me like this:
To: desolator58@hotmail.com
Subject: Web Hosting sign up.
Message:
Username, $POST['username']
Password, $POST['pass']
email, $POST['email']
usage, $POST['usage']
wanted sitename, $POST['sitename']
if sitename taken, $POST['ifsite']
if username taken, $POST['ifusername']
how they found final hosting,
$POST['find']
please can someone help me.
Thanks
desolator