我在数据表中有问题。 重新加载数据表后,将发生此错误。 为什么在数据表中会出现此错误? 我在重新加载之前销毁了数据表
<?php if(isset($_POST['submit'])) {
$username = $_POST['username'];
$password = $_POST['password'];
$connection = mysqli_connect('localhost', 'root', 'root', 'loginapp');
if($connection) {
echo "We are connected";
} else {
}
die("Database connection failed");
} //you are missing this } add it
?>