我正在尝试从Linux环境中学习数据库和本地服务器的工作方式,但是由于某些原因,没有将数据添加到我的数据库中。我正在运行Ubuntu 18.04,并将XAMPP用于SQL和PHP服务器。我将把我的代码放在下面。我的目标是能够通过html表单输入数据,并将这些数据直接添加到我的数据库中。
<?php
$connection = mysqli_connect("localhost", "root", "****************"); // Establishing Connection with Server
$db = mysqli_select_db($connection, 'app_login'); // Selecting Database from Server
// Fetching variables of the form which travels in URL
$ID = $_POST['ID'];
$email = $_POST['Email'];
$username = $_POST['username'];
$password = $_POST['password'];
$query = mysqli_query($connection, "INSERT INTO 'users' (id, username, password, email) VALUES ('$ID', '$username', '$password', '$email')");
mysqli_close($connection); // Closing Connection with Server
?>
我可以通过Web浏览器在localhost中测试此代码,而不会出现任何错误消息。对可能是什么问题有任何想法吗?