| |||||||
This is a discussion on PHP User Registration System within the PHP/MySQL section, part of the Programming category; sound good. are you using actually using that ? And can you show us how to do it ? we'd ...
![]() |
| | LinkBack (1) | Thread Tools | Display Modes |
|
#21
| ||||
| ||||
|
sound good. are you using actually using that ? And can you show us how to do it ? we'd love to see your guide.
|
|
#22
| ||||
| ||||
As Said by runrunforest I am still using it on my Demo website coz have no time to update it. But the Website Directory you see here uses the exact system that I described. The query that is executed when you visit the directory is like this:- PHP Code: PHP Code: PHP Code:
__________________ Would you like to Link To Us | Support TECH6 by going Premium Know more about me at Vinayaks.com | Follow TECH6 at Twitter |
|
#23
| ||||
| ||||
|
Thats truely fascinating as I just stared basics of PHP. Vinayaks, I beg you to post the complete tutorial with new method I want to learn them as soon as possible. |
|
#24
| ||||
| ||||
|
well.. I had already described it. It isn't hard to implement it now. Just go through this tutorial carefully and am sure you'd be able to do it. The rest of the parts i.e. after the email despatch will come soon. Its simply not possible now due to lack of time, but in a month for sure. Btw.. my name is Vinayak and s is apostrophe ![]()
__________________ Would you like to Link To Us | Support TECH6 by going Premium Know more about me at Vinayaks.com | Follow TECH6 at Twitter |
|
#25
| ||||
| ||||
|
why wouldn't you use md5 instead sha256 ? for encode password
|
|
#26
| ||||
| ||||
|
SHA-256 is a 256-bit (32-byte) message digest hash and is meant to provide 128 bits of security against collision attacks. Thus it is very strong, much much stronger than md5. And there are news even that md5 has been ****ked already.
__________________ Would you like to Link To Us | Support TECH6 by going Premium Know more about me at Vinayaks.com | Follow TECH6 at Twitter |
|
#27
| ||||
| ||||
|
Just a small update:- As with PHP 5, we now have an inbuilt hash function to use SHA256. So in register.php, simply remove the requirement of sha256.inc.php (its not needed anymore unless you are still using PHP 4) Replace this line:- PHP Code: PHP Code:
__________________ Would you like to Link To Us | Support TECH6 by going Premium Know more about me at Vinayaks.com | Follow TECH6 at Twitter |
|
#28
| ||||
| ||||
|
This post helped me to create a registration form and i find the password encrypted using SHA. Im also creating a login windows in which the password has to be decrypted and checked for login. i need help on this. kindly create a post/thread and show me the steps involved in it.
|
|
#29
| ||||
| ||||
|
You cannot decrypt it. Login would be secure as well. What you have to do is to simply: -Create a login form -Store the password input in a variable -Convert it to SHA encrypted form and store it in another variable $encrypted_pass -Match the $encrypted_pass with the password stored in table and login.
__________________ Would you like to Link To Us | Support TECH6 by going Premium Know more about me at Vinayaks.com | Follow TECH6 at Twitter |
|
#30
| ||||
| ||||
|
Hi All Just posting this to try and keep interest in this thread alive. I am looking forward to the last part of this tutorial that deals with the user maintenance stuff. I have a friend who just e-mailed me that he could not remember his password lol
__________________ Go placidly amid the noise and haste, and remember what peace there may be in silence The Desiderada |
|
#31
| ||||
| ||||
|
haha.. sure, I'll get this maintenance stuff done this week. It will include:- - Resending of activation mails by user themselves - Forgot Password feature - An overview of the login process.
__________________ Would you like to Link To Us | Support TECH6 by going Premium Know more about me at Vinayaks.com | Follow TECH6 at Twitter |
|
#32
| ||||
| ||||
|
hi, how can use the encrypted password for user login. I mean if the user enters the password for login, how can i check the correctness in the login page. thnaks in advance Prakash |
|
#33
| ||||
| ||||
|
Really simple. Btw I did answered you here. http://tech6.com/f19/php-user-regist...45-2/#post2382
__________________ Would you like to Link To Us | Support TECH6 by going Premium Know more about me at Vinayaks.com | Follow TECH6 at Twitter |
![]() |
| Bookmarks |
| Tags |
| tutorial, user registration system |
| Thread Tools | |
| Display Modes | |
| |
LinkBacks (?)
LinkBack to this Thread: http://tech6.com/f19/php-user-registration-system-t145/ | ||||
| Posted By | For | Type | Date | |
| PHP User Registration System | This thread | Refback | 15-09-2009 01:33 PM | |