私はこれらすべてに不慣れですが、かなりの量のHTML/CSSを知っています。ログインサーバーを作成したいのですが、ほとんどのコードをビデオから取得しました。誰かが私を助けて、私が理解できるように徹底的に説明することができれば、それは大いにありがたいです。他に必要なものがあれば、喜んで投稿します。
<?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;
}
}
}
}