Mmo registration form

Just wondering how would you create a registration form for a unity game using html?/

example you go to a website you will in the form on the site then you get email verification then you can enter the unity game

You just dont like google do you? Found plenty tutorials in a few seconds when i searched for it.

You can do all of this with some knowledge of MySQL.

the form part is easy i understand that i would need to use a php form inbeded into a html page or a php page but wht i would like to do is:

  1. you go on website and fill in the form
  2. the data gets sent from the form to a database and then saves them as a new record
  3. send email verification to your email
  4. you activate it by using a link
  5. it takes you to the game
  6. you can login into the game using the details that you have entered in at the start

how would i like the unity game to the same database that i use for the registration form

1.) Create an ASP.NET website that allows a user to register
2.) Email them a registration link, that when they click on, marks them as active in the database
3.) Create a web service for your game, http://wiki.unity3d.com/index.php?title=Webservices_In_Unity
4.) The web service will sit on your same server as your ASP.NET website, and for the login form in your game, just call the web service, which calls the database, then sends back a response to the client.
5.) I’d highly suggest securing the web service/website with HTTPS.