Form that Create account for visitors (PHP Mysql Database)
I am very new to database, I am used to designing forms in html, that is, webmail. Integrating databsae now to achive the following three objectives is hard for me:
1. To create a form that will enable a site visitor create an account and have the data entered in the form fields submitted to a PHP MySQL database.
2. As soon as the form is submitted I want
auto-response sent to the email address of the visitor
in form of acknowledgement. This email address will be
the visitors user name.
3. When the above is done how will it be possible for the
visiter to login to his account?
Below is the form I designed in html. Could you tell me what to do now to achive the above three objectives:
<html>
<head>
<title>Create an account</title>
</head>
<body>
<p><font face="Arial" style="font-size: 9pt" color="#505050">
Create a new account with us.</font></p>
<table border="0" cellpadding="0" cellspacing="0" width="346" id="table126"><tr><td width="346">
<font face="Arial" style="font-size: 9pt">
First Name:<input name="FName" <br>
Last Name:<input name="LName" <br>
Company:<input type="text" name="Company" <br>
Address1:<input type="text" name="Address1" <br>
Address2:<input type="text" name="Address2" <br>
Telephone:<input type="text" name="Telephone" <br>
Your Email:<input type="text" name="email" <br>
Re-Enter Email:<input type="text" name="Confirm_Email" <br>
Password:<input type="password" name="Password" <br>
Confirm Password:<input type="password" name="Confirm_password" <br>
<input type="submit" value="Continue" </td></tr></table>
</body></html>
Someone help. Thanks.