Forum Moderators: mack
please help me. how can i do it.
please tell me full detail. i am a completly new in this .
Thank's
Gajendra
What you are asking is not something that can just be explained in full detail without teaching you some basic things.
I suggest you take this one step at a time.
First you need to create and HTML form that has all the registration data you want. In the form tag you want it to post to a php page that will do some processing.
<form action="/process_registration.php">
First name <input type="text" name="first_name">
</form>
Then the process_registration page takes the form data and puts it into a sql insert statement
$POST['first_name']
$sql="insert into user_reg (first_name) values (" + $POST['first_name'] + ")"
Execute the query... once you have it inserting data from the form post back and we can work on step 2
mySQL documentation [dev.mysql.com] for setting up the database.