Hướng dẫn truy vấn dữ liệu | VN-Zoom | Cộng đồng Chia Sẻ Kiến Thức Công Nghệ và Phần Mềm Máy Tính

Adblocker detected! Please consider reading this notice.

We've detected that you are using AdBlock Plus or some other adblocking software which is preventing the page from fully loading.

We need money to operate the site, and almost all of it comes from our online advertising.

If possible, please support us by clicking on the advertisements.

Please add vn-z.vn to your ad blocking whitelist or disable your adblocking software.

×

Hướng dẫn truy vấn dữ liệu

ngoctin

Gà con
Mọi người giúp em truy vấn dữ liệu trong các bản rồi mình kiểm tra form đăng nhập.
Em đang làm đồ án web mà bị vướng chỗ này ạ.
Ông thầy yêu cầu cao quá chỉ mới năm nhất !!
Code kết nối database
Mã:
    <?php
    $conn = mysqli_connect('localhost', 'root', '', 'gamestore') or die ('Không thể kết nối tới database');
    $str = 'SELECT * FROM accout';
    $result = mysqli_query($conn,$str);
    if(!$result){
        die ('Câu truy vấn bị sai');
    }
Mã:
<div id="log-in">
<img src="img/logo.png" onclick="demo()">
<img id="cancel" src="img/error.png" onclick="cancel()">
<h3>LOG IN</h3>
<form action="index-showgame.php" method="POST">
<input id="username" name="username" type="email" placeholder="Email">
<input id="pass" name="pass" type="password" placeholder="Password">
<input id="submit" name="submitButton" type="submit" value="LOG IN NOW">
<hr>
<input type="reset" value="RESET PASSWORD"/>
<input type="button" value="I'M NEW HERE" onclick="sign_up_one()"/>
</form>
</div>
 


Top