Senior iOS Developer, with a passion for technology and gardening. Trying to push the boundaries of what can be grown in the UK.
This short tutorial series shows you how to create a very basic login functionality, that you can add to your websites. In this second video I show you how to create a MySQL database, connect to it and how to retrieve information from it. Over the series I will add more to the system including password security and will probably finishing up by using it to create a simple blog.
<?phpsession_start();if(isset($_POST['username'])){// Include the databas connection script
include_once("dbConnect.php");// Set the posted data from the form into local variables
$usname=strip_tags($_POST['username']);$paswd=strip_tags($_POST['password']);$usname=mysqli_real_escape_string($dbCon,$usname);$paswd=mysqli_real_escape_string($dbCon,$paswd);$paswd=md5($paswd);// using md5 just for testing purposes
$sql="SELECT id, username, password FROM members WHERE username = '$usname' AND activated = '1' LIMIT 1";$query=mysqli_query($dbCon,$sql);$row=mysqli_fetch_row($query);$uid=$row[0];$dbUsname=$row[1];$dbPassword=$row[2];// Check if the username and the password they entered was correct
if($usname==$dbUsname&&$paswd==$dbPassword){// Set session
$_SESSION['username']=$usname;$_SESSION['id']=$uid;// Now direct to users feed
header("Location: user.php");}else{echo"<h2>Oops that username or password combination was incorrect.
<br /> Please try again.</h2>";}}?><!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Basic login system</title>
<style type="text/css">
html {
font-family: Verdana, Geneva, sans-serif;
}
h1 {
font-size: 24px;
text-align: center;
}
#wrapper {
position: absolute;
width: 100%;
top: 30%;
margin-top: -50px;/* half of #content height*/
}
#form {
margin: auto;
width: 200px;
height: 100px;
}
</style>
</head>
<body>
<div id="wrapper">
<h1>Simple PHP Login</h1>
<form id="form" action="index.php" method="post" enctype="multipart/form-data">
Username: <input type="text" name="username" /> <br />
Password: <input type="password" name="password" /> <br />
<input type="submit" value="Login" name="Submit" />
</form>
</body>
</html>
logout.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?phpsession_start();session_destroy();if(isset($_SESSION['username'])){$msg="You are now logged out";}else{$msg="<h2>Could not log you out</h2>";}?><html>
<body>
<?php echo $msg; ?><br>
<p><a href="/login-test">Click here</a> to return to our home page </p>
</body>
</html>