I have attached how to signup form works (or how it's suppost to work
)
|
Advertisement
|
|
|
| 05-01-2010, 17:29 | #62 |
|
Registered User
![]() |
It is my guess that this whole thread was based on getting the POST variables from the home page login ... straight into the sign up page so users don't have to edit them again. This has confused most people.
First of all.....you don't have a registration button on your home page. Only a sign in button (called continue) for users who have already signed up. I understand that you are trying to send the information from the home page to the sign up page. Its best not to do that. Just add a register button below it. So if you are going to do this, the next para is what needs to be done. Within that image, POST should not be used in between the login and the sign up page (you only want your registered users to sign in straight away), sign up page is only for users who have not yet registered with you. POST should only be used in the sign up page and after it to collect that information (and storing this information in the database will also be on the same page too). Do you understand this? Last edited by HandWS LTD; 05-01-2010 at 17:33. |
|
|
| 05-01-2010, 17:42 | #64 |
|
Registered User
![]() |
Oh....right. Users will get confused as they will think "i don't have a password with them so where do i sign up?". Sign up is nowhere to be seen. Maybe get rid of the email and password fields altogether and just have the continue button or something that'll go straight to the sign up page. Make it more user friendly.
|
|
|
|
Advertisement
|
|
|
| 05-01-2010, 17:59 | #66 |
|
Registered User
![]() |
... sounds like you are new to web development. You can only learn by doing the work yourself.First of all, you will need to add the php code to POST all the information on your register.php file you have now. Have you created tables for your database? You have already created the DB name. This is a simple tutorial that should be helpful. http://php.about.com/od/finishedphp1...login_code.htm You will need to add the rest of the fields in your start/index.php to the database and the codes in the tutorial above. |
|
|
| 05-01-2010, 18:14 | #68 |
|
Registered User
![]() |
I have done all the instructions on this page http://www.howtodothings.com/compute...r-your-website in addition added fields in the database... Now I need to know how to do a registration form...
|
|
|
| 05-01-2010, 18:16 | #69 | |
|
Moderator
![]() |
Quote:
Make an attempt |
|
|
|