I'm new to all of this, but I know a decent amount of HTML / CSS. I want to create a login server, and I got most of the code from the video. If someone can help me and explain in detail, so I can understand that it will be very appreciated. If you need any other material, I will gladly publish it.
<?php
require_once 'includes/constants.php';
class Mysql {
private $conn;
function _construct() {
$this->conn = new mysqli(DB_SERVER, DB_USER, DB_PASSWORD, DB_NAME) or die('There was a problem connecting to the database.');
}
function verify_Username_and_Pass($un, $pwd) {
$query = "SELECT *
FROM users
WHERE username = ? AND password = ?
LIMIT 1";
if($stmt = $this->conn->prepare($query)) {
$stmt->bind_param('ss', $un, $pwd);
$stmt->execute();
if($stmt->fetch()) {
$stmt->close();
return true;
}
}
}
}
source
share