Zoud Posted January 16, 2007 Share Posted January 16, 2007 Does anyone know were, or can make up a tutorial that is specificly on login scripts, not just things that are similar to it?I've got this site were I have register, profile editting, and working on forum posting... but no login. :D Link to comment https://forums.phpfreaks.com/topic/34425-login-scripts/ Share on other sites More sharing options...
taith Posted January 16, 2007 Share Posted January 16, 2007 [code]<?session_start();$password=md5($_POST[password]);$result=mysql_query("SELECT * FROM users WHERE `$username`='$_POST[username]' AND `password`='$password' LIMIT 1");$row=mysql_fetch_array($result);if(!empty($row)){ $_SESSION[user]=$row; header();#go back to homepage}else{ header();#go back to login}unset($password);?>[/code] Link to comment https://forums.phpfreaks.com/topic/34425-login-scripts/#findComment-162057 Share on other sites More sharing options...
Accurax Posted January 16, 2007 Share Posted January 16, 2007 If you go to the tutorials section on this very site... you will find a very good tutorial on membership systems :) heres a link to the tutorial section so you can see what else is on offer.[url=http://www.phpfreaks.com/tutorials.php]http://www.phpfreaks.com/tutorials.php[/url] Link to comment https://forums.phpfreaks.com/topic/34425-login-scripts/#findComment-162059 Share on other sites More sharing options...
Zoud Posted January 16, 2007 Author Share Posted January 16, 2007 taith, umm... it wont set the session.And the tutorial only shows for private messaging systems and something else.But what I wanted was a login script tutorial. Link to comment https://forums.phpfreaks.com/topic/34425-login-scripts/#findComment-162069 Share on other sites More sharing options...
Zoud Posted January 16, 2007 Author Share Posted January 16, 2007 >.< Boo... Link to comment https://forums.phpfreaks.com/topic/34425-login-scripts/#findComment-162106 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.