Create Login page with php and mysql

2
This is a simple website login system that has been very reliable and secure for me. I use it myself on my websites, when a simple login system is needed. If yo u know a little MySQL and PHP, it is very easy to use. If you need a PHP refres her course, I strongly recommend Simple PHP - you can learn the basics of PHP pr ogramming in just a few days! Here's how to create a simple website login system using PHP and MySQL. First, you will need to have MySQL installed on your computer. I have XAMMP inst alled and I use PHPmyADMIN for accessing my databases. They are free for downloa d; just search for them online. You also need to create a database in your MySQL . And as you proceed, remember that linux server file names are always case sens itive. LOGIN.PHP is not equal to login.php like it would be on WINDOWS servers. how to make a login Run this SQL command in your MySQL database (you must have one): CREATE TABLE `users` ( `id` int(3) NOT NULL auto_increment, `login` varchar(8) default NULL, `password` varchar(8) default NULL, PRIMARY KEY (`id`) ) TYPE=MyISAM AUTO_INCREMENT=3 ; This will create the table that will record the usernames and passwords. Then, create the LOGIN.PHP file. This page will contain the form that will s ubmit the user´s data.  <? session_name("MyLogin"); session_start(); session_destroy(); if($_GET['login'] == "failed") { print $_GET['cause']; } ?> <form name="login_form" method="post" action="log.php?action=login"> Login: <input type="text" name="user"><BR> Password: <input type="password" name="pwd"><BR> <input type="submit"> </form> Now, create the LOG.PHP. This is the file that performs the action of the fo rm.  <? session_name("MyLogin"); session_start(); if($_GET['action'] == "login") { $conn = mysql_connect("localhost","user","password"); // your MySQL connecti on data $db = mysql_select_db("DATABASENAME"); //put your database name in here $name = $_POST['user'];

Transcript of Create Login page with php and mysql

8/7/2019 Create Login page with php and mysql

http://slidepdf.com/reader/full/create-login-page-with-php-and-mysql 1/2

8/7/2019 Create Login page with php and mysql

http://slidepdf.com/reader/full/create-login-page-with-php-and-mysql 2/2