joshua0000 Posted November 3, 2013 Share Posted November 3, 2013 Hi guys, I am new to php programming and need your assistance in developing a registration system for my site .I have developed the registration form using html5 , css, jquery and javascript. and now need a functional php script which is going to work for my registration form. The Registration form includes 4 step process for successful registration of a user.The fields of the form are as follows: First Step: username password re-type password Second step: first name last name email Third step age gender country Fourth step: Summary(displaying all user information which user has given through out the registratioin process) For user viewing,I have included a progress bar, which shows the percentage of completion of the registration process. I have attached the screenshot below for the registration form. Kindly help me in building a functional php script for the registration form. Thanks Quote Link to comment Share on other sites More sharing options...
Speedysnail6 Posted November 3, 2013 Share Posted November 3, 2013 There are many ways to make a registration script in PHP. Does your site have a mysql database. I suggest if you're new, to install a premade script. Quote Link to comment Share on other sites More sharing options...
AdRock Posted November 3, 2013 Share Posted November 3, 2013 Here's a link to an example http://www.plus2net.com/php_tutorial/php-membership-download.php Quote Link to comment Share on other sites More sharing options...
joshua0000 Posted November 4, 2013 Author Share Posted November 4, 2013 @ Speedysnail6 Yes i have mysql database feature on my website .I will have to create a database for the registration and login system if i get any script for the registration system. Thanks Quote Link to comment Share on other sites More sharing options...
joshua0000 Posted November 4, 2013 Author Share Posted November 4, 2013 @AdRock Thanks for the link.Does it mean that i can download the files and include it in my site without any problem.Is it working ? Thanks Quote Link to comment Share on other sites More sharing options...
Hampe Posted November 4, 2013 Share Posted November 4, 2013 (edited) joshua0000 The script works without any problems. 4 easy steps: 1. Download it 2. Upload it to your webserver 3. Upload the sql_dump.txt to your database 4. Edit the "config.php" with your databaselogin Now you are up and running! // Hampus Edited November 4, 2013 by Hampe Quote Link to comment Share on other sites More sharing options...
Stefany93 Posted November 4, 2013 Share Posted November 4, 2013 There are many ways to make a registration script in PHP. Does your site have a mysql database. I suggest if you're new, to install a premade script. If the OP wants to learn how to do it, using a premade script will be a mistake. Even if he wants just to use something ready, it will be a mistake again. Pay a programmer $30 to make a reg script for you, those "premade scripts" are ancient and full with security holes. And if your website is not very big, I'd suggest using SQLite over MySQL. Quote Link to comment Share on other sites More sharing options...
Ch0cu3r Posted November 4, 2013 Share Posted November 4, 2013 If the OP wants to learn how to do it, using a premade script will be a mistake. Even if he wants just to use something ready, it will be a mistake again. Pay a programmer $30 to make a reg script for you, those "premade scripts" are ancient and full with security holes. +1000! 5 easy steps: 1. Download it 2. Upload it to your webserver 3. Upload the sql_dump.txt to your database 4. Edit the "config.php" with your databaselogin 5. Come back to us because it is not working Quote Link to comment Share on other sites More sharing options...
Hampe Posted November 4, 2013 Share Posted November 4, 2013 That´s odd, because I´ve been using it, before I made my own reg script Quote Link to comment Share on other sites More sharing options...
boompa Posted November 4, 2013 Share Posted November 4, 2013 It's a crap script, starting with the fact that it uses unsalted md5-hashed passwords. Points though, at least, for using PDO and prepared statements. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.