Similar topics
Pencarian
translator
User Yang Sedang Online
Total 104 uses online :: 0 Terdaftar, 0 Tersembunyi dan 104 Tamu Tidak ada
User online terbanyak adalah 292 pada Mon Oct 28, 2024 9:51 pm
PHP Login script tutorial
Halaman 1 dari 1
PHP Login script tutorial
<table bgcolor="#cccccc" border="0" cellpadding="0" cellspacing="1" width="10"> <tr> <td></td> </tr> </table> | PHP Login script tutorial |
Learn to create a simple login system with php + mysql script, this tutorial easy to follow, teach you step by step. |
<table bgcolor="#f4f9fb" border="0" cellpadding="2" cellspacing="1" width="100%"> <tr> <td align="center"><table bgcolor="#f4f9fb" border="0" cellpadding="2" cellspacing="1" width="100%"> <tr> <td align="center"> </td> <td bgcolor="#e8f8ff" valign="top" width="94%"> google_protectAndRun("ads_core.google_render_ad", google_handleError, google_render_ad); </td> </tr> </table></td> </tr> </table> |
<table bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="3" width="100%"> <tr> <td><table bgcolor="#f4f9fb" border="0" cellpadding="0" cellspacing="1" width="100%"> <tr> <td height="20">Overview</td> </tr> <tr> <td bgcolor="#eeeeee"></td> </tr> <tr> <td valign="top"><table border="0" cellpadding="0" cellspacing="5" width="100%"> <tr> <td>In this tutorial create 3 files 1. main_login.php 2. checklogin.php 3. login_success.php Step 1. Create table "members" in database "test". 2. Create file main_login.php. 3. Create file checklogin.php. 4. Create file login_success.php. 5. Create file logout.php If you don't know how to create databse, click here</td> </tr> </table></td> </tr> </table></td> </tr> </table> |
<table bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="3" width="100%"> <tr> <td><table bgcolor="#f4f9fb" border="0" cellpadding="0" cellspacing="1" width="100%"> <tr> <td width="5%"></td> <td width="95%">Create table "members"</td> </tr> <tr> <td colspan="2" bgcolor="#eeeeee"></td> </tr> <tr> <td colspan="2" valign="top"><table border="0" cellpadding="0" cellspacing="5" width="100%"> <tr> <td> CREATE TABLE `members` ( `id` int(4) NOT NULL auto_increment, `username` varchar(65) NOT NULL default '', `password` varchar(65) NOT NULL default '', PRIMARY KEY (`id`) ) TYPE=MyISAM AUTO_INCREMENT=2 ; -- -- Dumping data for table `members` -- INSERT INTO `members` VALUES (1, 'john', '1234');</td> </tr> <tr> <td align="center"> <table bgcolor="#cccccc" border="0" cellpadding="0" cellspacing="1" width="100"> <tr> <td></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table> |
<table bgcolor="#dfebf2" border="0" cellpadding="0" cellspacing="1" width="100%"> <tr> <td><table bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="3" width="100%"> <tr> <td><table bgcolor="#f4f9fb" border="0" cellpadding="0" cellspacing="1" width="100%"> <tr> <td width="5%"></td> <td width="95%">Create file main_login.php</td> </tr> <tr> <td colspan="2" bgcolor="#eeeeee"></td> </tr> <tr> <td colspan="2" valign="top"><table border="0" cellpadding="0" cellspacing="5" width="100%"> <tr> <td align="center">View In Browser <table bgcolor="#cccccc" border="0" cellpadding="0" cellspacing="1" width="100"> <tr> <td></td> </tr> </table> </td> </tr> <tr> <td class="Arial"> ############### Code <table width="300" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC"> <tr> <form name="form1" method="post" action="checklogin.php"> <td> <table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#FFFFFF"> <tr> <td colspan="3"><strong>Member Login </strong></td> </tr> <tr> <td width="78">Username</td> <td width="6">:</td> <td width="294"><input name="myusername" type="text" id="myusername"></td> </tr> <tr> <td>Password</td> <td>:</td> <td><input name="mypassword" type="text" id="mypassword"></td> </tr> <tr> <td> </td> <td> </td> <td><input type="submit" name="Submit" value="Login"></td> </tr> </table> </td> </form> </tr> </table> </td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table> |
<table bgcolor="#dfebf2" border="0" cellpadding="0" cellspacing="1" width="100%"> <tr> <td><table bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="3" width="100%"> <tr> <td><table bgcolor="#f4f9fb" border="0" cellpadding="0" cellspacing="1" width="100%"> <tr> <td width="5%"></td> <td width="95%">Create file checklogin.php</td> </tr> <tr> <td colspan="2" bgcolor="#eeeeee"></td> </tr> <tr> <td colspan="2" valign="top"><table border="0" cellpadding="0" cellspacing="5" width="100%"> <tr> <td align="center"> </td> </tr> <tr> <td class="Arial"> ############### Code <?php $host="localhost"; // Host name $username=""; // Mysql username $password=""; // Mysql password $db_name="test"; // Database name $tbl_name="members"; // Table name // Connect to server and select databse. mysql_connect("$host", "$username", "$password")or die("cannot connect"); mysql_select_db("$db_name")or die("cannot select DB"); // username and password sent from form $myusername=$_POST['myusername']; $mypassword=$_POST['mypassword']; // To protect MySQL injection (more detail about MySQL injection) $myusername = stripslashes($myusername); $mypassword = stripslashes($mypassword); $myusername = mysql_real_escape_string($myusername); $mypassword = mysql_real_escape_string($mypassword); $sql="SELECT * FROM $tbl_name WHERE username='$myusername' and password='$mypassword'"; $result=mysql_query($sql); // Mysql_num_row is counting table row $count=mysql_num_rows($result); // If result matched $myusername and $mypassword, table row must be 1 row if($count==1){ // Register $myusername, $mypassword and redirect to file "login_success.php" session_register("myusername"); session_register("mypassword"); header("location:login_success.php"); } else { echo "Wrong Username or Password"; } ?> </td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table> |
<table bgcolor="#dfebf2" border="0" cellpadding="0" cellspacing="1" width="100%"> <tr> <td><table bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="3" width="100%"> <tr> <td><table bgcolor="#f4f9fb" border="0" cellpadding="0" cellspacing="1" width="100%"> <tr> <td width="5%"></td> <td width="95%">Create file login_success.php </td> </tr> <tr> <td colspan="2" bgcolor="#eeeeee"></td> </tr> <tr> <td colspan="2" valign="top"><table border="0" cellpadding="0" cellspacing="5" width="100%"> <tr> <td> ############### Code // Check if session is not registered , redirect back to main page. // Put this code in first line of web page. <? session_start(); if(!session_is_registered(myusername)){ header("location:main_login.php"); } ?> <html> <body> Login Successful </body> </html></td> </tr> </table></td> </tr> </table></td> </tr> </table> </td> </tr> </table> |
<table bgcolor="#dfebf2" border="0" cellpadding="0" cellspacing="1" width="100%"> <tr> <td><table bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="3" width="100%"> <tr> <td><table bgcolor="#f4f9fb" border="0" cellpadding="0" cellspacing="1" width="100%"> <tr> <td width="5%"></td> <td width="95%">Logout.php</td> </tr> <tr> <td colspan="2" bgcolor="#eeeeee"></td> </tr> <tr> <td colspan="2" valign="top"><table border="0" cellpadding="0" cellspacing="5" width="100%"> <tr> <td> If you want to logout, create this file // Put this code in first line of web page. <? session_start(); session_destroy(); ?> </td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table> |
<table bgcolor="#dfebf2" border="0" cellpadding="0" cellspacing="1" width="100%"> <tr> <td><table bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="3" width="100%"> <tr> <td><table bgcolor="#f4f9fb" border="0" cellpadding="0" cellspacing="1" width="100%"> <tr> <td width="5%"></td> <td width="95%">For PHP5 User - checklogin.php </td> </tr> <tr> <td colspan="2" bgcolor="#eeeeee"></td> </tr> <tr> <td colspan="2" valign="top"><table border="0" cellpadding="0" cellspacing="5" width="100%"> <tr> <td>############### Code <?php ob_start(); $host="localhost"; // Host name $username=""; // Mysql username $password=""; // Mysql password $db_name="test"; // Database name $tbl_name="members"; // Table name // Connect to server and select databse. mysql_connect("$host", "$username", "$password")or die("cannot connect"); mysql_select_db("$db_name")or die("cannot select DB"); // Define $myusername and $mypassword $myusername=$_POST['myusername']; $mypassword=$_POST['mypassword']; // To protect MySQL injection (more detail about MySQL injection) $myusername = stripslashes($myusername); $mypassword = stripslashes($mypassword); $myusername = mysql_real_escape_string($myusername); $mypassword = mysql_real_escape_string($mypassword); $sql="SELECT * FROM $tbl_name WHERE username='$myusername' and password='$mypassword'"; $result=mysql_query($sql); // Mysql_num_row is counting table row $count=mysql_num_rows($result); // If result matched $myusername and $mypassword, table row must be 1 row if($count==1){ // Register $myusername, $mypassword and redirect to file "login_success.php" session_register("myusername"); session_register("mypassword"); header("location:login_success.php"); } else { echo "Wrong Username or Password"; } ob_end_flush(); ?> </td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table> |
Halaman 1 dari 1
Permissions in this forum:
Anda tidak dapat menjawab topik