kaimason1 Posted January 26, 2009 Share Posted January 26, 2009 How do you create a login system with username, password, and captcha? ??? Quote Link to comment https://forums.phpfreaks.com/topic/142431-solved-creating-a-login-system/ Share on other sites More sharing options...
mbrown Posted January 26, 2009 Share Posted January 26, 2009 what are confused about with it. i have a log in system but without captcha. Quote Link to comment https://forums.phpfreaks.com/topic/142431-solved-creating-a-login-system/#findComment-746244 Share on other sites More sharing options...
kaimason1 Posted January 26, 2009 Author Share Posted January 26, 2009 I just have no clue how to go about it.... then again, as I have only been php programming for three weeks, I don't know much about how to go about anything. Quote Link to comment https://forums.phpfreaks.com/topic/142431-solved-creating-a-login-system/#findComment-746247 Share on other sites More sharing options...
mbrown Posted January 26, 2009 Share Posted January 26, 2009 you need to learn how to validate your form, insert into your db first. i would suggest hashing your pw with md5 or sha1. Quote Link to comment https://forums.phpfreaks.com/topic/142431-solved-creating-a-login-system/#findComment-746248 Share on other sites More sharing options...
kaimason1 Posted January 26, 2009 Author Share Posted January 26, 2009 i would suggest hashing your pw with md5 or sha1. HUH?? ??? (YES, I DO FEEL STOOPID... I MEAN STUPID ) Quote Link to comment https://forums.phpfreaks.com/topic/142431-solved-creating-a-login-system/#findComment-746250 Share on other sites More sharing options...
dropfaith Posted January 26, 2009 Share Posted January 26, 2009 such a hard thing to walk thru in a forum thread link contains pretty sweet tutorial easy to follow and implement doesnt have a captcha but the log in system is the harder part to implement anyways.. also it requires activation and spammers wont activate accounts so i just set up to remove all unactivated accounts after a certain timeframe Quote Link to comment https://forums.phpfreaks.com/topic/142431-solved-creating-a-login-system/#findComment-746253 Share on other sites More sharing options...
mbrown Posted January 26, 2009 Share Posted January 26, 2009 such a hard thing to walk thru in a forum thread link contains pretty sweet tutorial easy to follow and implement doesnt have a captcha but the log in system is the harder part to implement anyways.. also it requires activation and spammers wont activate accounts so i just set up to remove all unactivated accounts after a certain timeframe i do not see any link dropfaith Quote Link to comment https://forums.phpfreaks.com/topic/142431-solved-creating-a-login-system/#findComment-746529 Share on other sites More sharing options...
revraz Posted January 26, 2009 Share Posted January 26, 2009 Did you try to google PHP Login Tutorial? http://www.roscripts.com/PHP_login_script-143.html Quote Link to comment https://forums.phpfreaks.com/topic/142431-solved-creating-a-login-system/#findComment-746537 Share on other sites More sharing options...
dropfaith Posted January 26, 2009 Share Posted January 26, 2009 http://www.ineedtutorials.com/articles/complete-advanced-login-member-system-php-tutorial Quote Link to comment https://forums.phpfreaks.com/topic/142431-solved-creating-a-login-system/#findComment-746859 Share on other sites More sharing options...
aznkidzx Posted January 26, 2009 Share Posted January 26, 2009 I could help with captcha but not login system. Create a new file called captcha.php INside should be this <?php session_start(); $text = rand(10000,99999); $_SESSION["vercode"] = $text; $height = 25; $width = 65; $image_p = imagecreate($width, $height); $black = imagecolorallocate($image_p, 0, 0, 0); $white = imagecolorallocate($image_p, 255, 255, 255); $font_size = 14; imagestring($image_p, $font_size, 5, 5, $text, $white); imagejpeg($image_p, null, 80); ?> Now paste this on the page of your webform. <?php session_start(); if ($_POST["vercode"] != $_SESSION["vercode"] OR $_SESSION["vercode"]=='') { echo '<strong>Incorrect verification code.</strong><br>'; } else { // Add form data echo '<strong>Verification successful.</strong><br>'; }; ?> ------------------------------------------------- nevermind.. I guess I can help with the login system after all.. Open MySQL server and execute this CREATE TABLE `users` ( `UserID` INT(25) NOT NULL AUTO_INCREMENT PRIMARY KEY , `Username` VARCHAR(65) NOT NULL , `Password` VARCHAR(32) NOT NULL , `EmailAddress` VARCHAR(255) NOT NULL ); Then download the rest of the files from attachment. Quote Link to comment https://forums.phpfreaks.com/topic/142431-solved-creating-a-login-system/#findComment-747049 Share on other sites More sharing options...
kaimason1 Posted January 27, 2009 Author Share Posted January 27, 2009 THANK YOU EVERYONE! I think I will read over all these. Should I have trouble, I will unsolve this and post my question. But from CV's tutorial to all the others you handed me, I think I'm set! Quote Link to comment https://forums.phpfreaks.com/topic/142431-solved-creating-a-login-system/#findComment-747821 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.