10.20
Introduction
Today we are making a cool & simple login / registration system. It will give you the ability to easily create a member-only area on your site and provide an easy registration process.
It is going to be PHP driven and store all the registrations into a MySQL database.
To add the needed flair, we are using the amazing sliding jQuery panel, developed by Web-kreation.
Step 1 – MySQL
First we have to create the table that will hold all the registrations. This code is available in table.sql.
table.sql
01.--02.-- Table structure for table `tz_members`03.--04. 05.CREATE TABLE `tz_members` (06. `id` int(11) NOT NULL auto_increment,07. `usr` varchar(32) collate utf8_unicode_ci NOT NULL default '',08. `pass` varchar(32) collate utf8_unicode_ci NOT NULL default '',09. `email` varchar(255) collate utf8_unicode_ci NOT NULL default '',10. `regIP` varchar(15) collate utf8_unicode_ci NOT NULL default '',11. `dt` datetime NOT NULL default '0000-00-00 00:00:00',12. PRIMARY KEY (`id`),13. UNIQUE KEY `usr` (`usr`)14.) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;Notice that we’ve defined the id as an integer with auto_increment – it is automatically assigned to every site member. Also, we’ve defined usr as an unique key – no two users with the same usernames are allowed.
We later use this in the registration to determine whether the username has been taken.
After you create the table, do not forget to fill in your database credentials in connect.php so you can run the demo on your own server.
Step 2 – XHTML
First, we have to incorporate Web-kreation’s form into our page.
demo.php
001.<!-- Panel -->002.<div id="toppanel">003. 004.<div id="panel">005.<div class="content clearfix">006.<div class="left">007.<h1>The Sliding jQuery Panel</h1>008.<h2>A register/login solution</h2>009.<p class="grey">You are free to use this login and registration system in you sites!</p>010.<h2>A Big Thanks</h2>011.<p class="grey">This tutorial was built on top of <a href="http://web-kreation.com/index.php/tutorials/nice-clean-sliding-login-panel-built-with-jquery" title="Go to site">Web-Kreation</a>'s amazing sliding panel.</p>012.</div>013. 014.<?php015.if(!$_SESSION['id']):016.// If you are not logged in017.?>018. 019.<div class="left">020.<!-- Login Form -->021.<form class="clearfix" action="" method="post">022.<h1>Member Login</h1>023. 024.<?php025.if($_SESSION['msg']['login-err'])026.{027. echo '<div class="err">'.$_SESSION['msg']['login-err'].'</div>';028. unset($_SESSION['msg']['login-err']);029. // This will output login errors, if any030.}031.?>032. 033.<label class="grey" for="username">Username:</label>034.<input class="field" type="text" name="username" id="username" value="" size="23" />035.<label class="grey" for="password">Password:</label>036.<input class="field" type="password" name="password" id="password" size="23" />037.<label><input name="rememberMe" id="rememberMe" type="checkbox" checked="checked" value="1" /> Remember me</label>038.<div class="clear"></div>039.<input type="submit" name="submit" value="Login" class="bt_login" />040.</form>041. 042.</div>043. 044.<div class="left right">045. 046.<!-- Register Form -->047. 048.<form action="" method="post">049.<h1>Not a member yet? Sign Up!</h1>050. 051.<?php052. 053.if($_SESSION['msg']['reg-err'])054.{055. echo '<div class="err">'.$_SESSION['msg']['reg-err'].'</div>';056. unset($_SESSION['msg']['reg-err']);057. // This will output the registration errors, if any058.}059. 060.if($_SESSION['msg']['reg-success'])061.{062. echo '<div class="success">'.$_SESSION['msg']['reg-success'].'</div>';063. unset($_SESSION['msg']['reg-success']);064. // This will output the registration success message065.}066. 067.?>068. 069.<label class="grey" for="username">Username:</label>070.<input class="field" type="text" name="username" id="username" value="" size="23" />071.<label class="grey" for="email">Email:</label>072.<input class="field" type="text" name="email" id="email" size="23" />073.<label>A password will be e-mailed to you.</label>074.<input type="submit" name="submit" value="Register" class="bt_register" />075.</form>076. 077.</div>078. 079.<?php080.else:081.// If you are logged in082.?>083. 084.<div class="left">085.<h1>Members panel</h1>086.<p>You can put member-only data here</p>087.<a href="registered.php">View a special member page</a>088.<p>- or -</p>089.<a href="?logoff">Log off</a>090.</div>091.<div class="left right">092.</div>093. 094.<?php095.endif;096.// Closing the IF-ELSE construct097.?>098. 099.</div>100.</div> <!-- /login -->101. 102.<!-- The tab on top -->103.<div class="tab">104.<ul class="login">105.<li class="left"> </li>106.<li>Hello <?php echo $_SESSION['usr'] ? $_SESSION['usr'] : 'Guest';?>!</li>107.<li class="sep">|</li>108.<li id="toggle">109.<a id="open" class="open" href="#"><?php echo $_SESSION['id']?'Open Panel':'Log In | Register';?></a>110.<a id="close" style="display: none;" class="close" href="#">Close Panel</a>111.</li>112.<li class="right"> </li>113.</ul>114. 115.</div> <!-- / top -->116.</div> <!--panel -->At several places in this code, there are some PHP operators that check whether $_SESSION['usr'] or $_SESSION['id'] are defined. This is true only if the page visitor is logged in the site, which allows us to show specific content to site members. We will cover it in detail in a moment.
After the form, we put the rest of the page.
01.<div class="pageContent">02. 03.<div id="main">04. 05.<div class="container">06.<h1>A Cool Login System</h1>07.<h2>Easy registration management with PHP & jQuery</h2>08.</div>09. 10.<div class="container">11.<p>This is a ...</p>12.<div class="clear"></div>13. 14.</div>15. 16.</div>Nothing special here. Lets continue with the PHP backend.
The login systemStep 3 – PHP
It is time to convert the form into a complete registration and login system. To achieve it, we will need more than the usual amount of PHP. I’ll divide the code into two parts.
If you plan to add more code, it would be a good idea to split it into several files which are included when needed. This aids the development of large projects and allows code reuse in different parts of a site.
But lets see how we’ve done it here.
demo.php
01.define('INCLUDE_CHECK',true);02. 03.require 'connect.php';04.require 'functions.php';05. 06.// Those two files can be included only if INCLUDE_CHECK is defined07. 08.session_name('tzLogin');09.// Starting the session10. 11.session_set_cookie_params(2*7*24*60*60);12.// Making the cookie live for 2 weeks13. 14.session_start();15. 16.if($_SESSION['id'] && !isset($_COOKIE['tzRemember']) && !$_SESSION['rememberMe'])17.{18. // If you are logged in, but you don't have the tzRemember cookie (browser restart)19. // and you have not checked the rememberMe checkbox:20. 21. $_SESSION = array();22. session_destroy();23. 24. // Destroy the session25.}26. 27.if(isset($_GET['logoff']))28.{29. $_SESSION = array();30. session_destroy();31. header("Location: demo.php");32. exit;33.}34. 35.if($_POST['submit']=='Login')36.{37. // Checking whether the Login form has been submitted38. 39. $err = array();40. // Will hold our errors41. 42. if(!$_POST['username'] || !$_POST['password'])43. $err[] = 'All the fields must be filled in!';44. 45. if(!count($err))46. {47. $_POST['username'] = mysql_real_escape_string($_POST['username']);48. $_POST['password'] = mysql_real_escape_string($_POST['password']);49. $_POST['rememberMe'] = (int)$_POST['rememberMe'];50. 51. // Escaping all input data52. 53. $row = mysql_fetch_assoc(mysql_query("SELECT id,usr FROM tz_members WHERE usr='{$_POST['username']}' AND pass='".md5($_POST['password'])."'"));54. 55. if($row['usr'])56. {57. // If everything is OK login58. 59. $_SESSION['usr']=$row['usr'];60. $_SESSION['id'] = $row['id'];61. $_SESSION['rememberMe'] = $_POST['rememberMe'];62. 63. // Store some data in the session64. 65. setcookie('tzRemember',$_POST['rememberMe']);66. // We create the tzRemember cookie67. }68. else $err[]='Wrong username and/or password!';69. }70. 71. if($err)72. $_SESSION['msg']['login-err'] = implode('<br />',$err);73. // Save the error messages in the session74. 75. header("Location: demo.php");76. exit;77.}Here the tzRemember cookie acts as a control whether we should log-off users that have not marked the “remember me” checkbox. If the cookie is not present (due to browser restart) and the visitor has not checked the remember me option, we destroy the session.
The session itself is kept alive for two weeks (as set by session_set_cookie_params).
Lets see the second part of demo.php.
01.else if($_POST['submit']=='Register')02.{03. // If the Register form has been submitted04. $err = array();05. 06. if(strlen($_POST['username'])<4 || strlen($_POST['username'])>32)07. {08. $err[]='Your username must be between 3 and 32 characters!';09. }10. 11. if(preg_match('/[^a-z0-9\-\_\.]+/i',$_POST['username']))12. {13. $err[]='Your username contains invalid characters!';14. }15. 16. if(!checkEmail($_POST['email']))17. {18. $err[]='Your email is not valid!';19. }20. 21. if(!count($err))22. {23. // If there are no errors24. $pass = substr(md5($_SERVER['REMOTE_ADDR'].microtime().rand(1,100000)),0,6);25. // Generate a random password26. 27. $_POST['email'] = mysql_real_escape_string($_POST['email']);28. $_POST['username'] = mysql_real_escape_string($_POST['username']);29. // Escape the input data30. 31. mysql_query(" INSERT INTO tz_members(usr,pass,email,regIP,dt)32. VALUES(33. '".$_POST['username']."',34. '".md5($pass)."',35. '".$_POST['email']."',36. '".$_SERVER['REMOTE_ADDR']."',37. NOW()38. )");39. 40. if(mysql_affected_rows($link)==1)41. {42. send_mail( 'demo-test@tutorialzine.com',43. $_POST['email'],44. 'Registration System Demo - Your New Password',45. 'Your password is: '.$pass);46. $_SESSION['msg']['reg-success']='We sent you an email with your new password!';47. }48. else $err[]='This username is already taken!';49. }50. 51. if(count($err))52. {53. $_SESSION['msg']['reg-err'] = implode('<br />',$err);54. }55. 56. header("Location: demo.php");57. exit;58.}59. 60.$script = '';61.if($_SESSION['msg'])62.{63. // The script below shows the sliding panel on page load64. $script = '65. <script type="text/javascript">66. $(function(){67. $("div#panel").show();68. $("#toggle a").toggle();69. });70. </script>';71.}We store all the encountered errors in an $err array, which is later assigned to a $_SESSION variable. This allows it to be accessible after a browser redirect.
You may have noticed on some sites, that when you submit a form and later refresh the page, the data is sent all over again. This could become problematic as it could lead to a double registrations and unnecessary server load.
We use the header function to prevent this, by redirecting the browser to the same page. This starts a fresh view of the page, without the browser associating it with a form submit. The result is that, on page refresh, no data is sent.
But as we use $_SESSION to store all the encountered errors it is important that we unset these variables, once we show the errors to the user. Otherwise they will be shown on every page view (the highlighted lines on the XHTML part of the tutorial).
Also notice how we create an additional script (lines 60-70 of the second part of the PHP code) which shows the panel on page load, so that the messages are visible to the user.
Now lets take a look at the CSS.
The registration / login systemStep 4 – CSS
The sliding panel comes with its own style sheet. This means we are only left with creating the page styles.
demo.css
01.body,h1,h2,h3,p,quote,small,form,input,ul,li,ol,label{02. /* The reset rules */03. margin:0px;04. padding:0px;05.}06. 07.body{08. color:#555555;09. font-size:13px;10. background: #eeeeee;11. font-family:Arial, Helvetica, sans-serif;12. width: 100%;13.}14. 15.h1{16. font-size:28px;17. font-weight:bold;18. font-family:"Trebuchet MS",Arial, Helvetica, sans-serif;19. letter-spacing:1px;20.}21. 22.h2{23. font-family:"Arial Narrow",Arial,Helvetica,sans-serif;24. font-size:10px;25. font-weight:normal;26. letter-spacing:1px;27. padding-left:2px;28. text-transform:uppercase;29. white-space:nowrap;30. margin-top:4px;31. color:#888888;32.}33. 34.#main p{35. padding-bottom:8px;36.}37. 38..clear{39. clear:both;40.}41. 42.#main{43. width:800px;44. /* Centering it in the middle of the page */45. margin:60px auto;46.}47. 48..container{49. margin-top:20px;50. 51. background:#FFFFFF;52. border:1px solid #E0E0E0;53. padding:15px;54. 55. /* Rounded corners */56. -moz-border-radius:20px;57. -khtml-border-radius: 20px;58. -webkit-border-radius: 20px;59. border-radius:20px;60.}61. 62..err{63. color:red;64.}65. 66..success{67. color:#00CC00;68.}69. 70.a, a:visited {71. color:#00BBFF;72. text-decoration:none;73. outline:none;74.}75. 76.a:hover{77. text-decoration:underline;78.}79. 80..tutorial-info{81. text-align:center;82. padding:10px;83.}Step 5 – jQuery
The sliding panel comes with its own jQuery files.
demo.php
01.<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>02. 03.<!-- PNG FIX for IE6 -->05.<!--[if lte IE 6]>06.<script type="text/javascript" src="login_panel/js/pngfix/supersleight-min.js"></script>07.<![endif]-->08. 09.<script src="login_panel/js/slide.js" type="text/javascript"></script>10. 11.<?php echo $script; ?>First we include the jQuery library from Google’s CDN. Later comes a special fix for IE6 PNG transparency issues and lastly the panel’s script is included.
At the bottom of the page is the $script variable – it shows the panel on page load if needed.
With this our cool login system is complete!
Conclusion
Today we learned how to use a fantastic form component and turn it into a functional log in / registration system.
You are free to built upon this code and modify it any way you see fit.
暂无回复
添加回复