对于PHP来说,我是新手。我正在尝试登录和注销网页。现在,我创建了一个可以添加记录的页面。我的代码总是从我构建的表单中返回1,而不管表单中的值如何。 我的代码 -
<?php
$servername = "localhost";
$username = "username";
$password = "password";
$alpha = isset($_GET["username"]);
$beta = isset($_GET["password"]);
$gama = isset($_GET["hobby"]);
// Create connection
$conn = mysqli_connect("localhost","root" ,"","member");
// Check connection
if (!$conn) {
die("Connection failed: " . mysqli_connect_error());
}
$sql = "INSERT INTO data (username,password,hobby)
VALUES ($alpha, $beta, $gama)";
if ($conn->query($sql)=== TRUE) {
echo $alpha."Your record is added into our database ";
} else {
echo $sql.$conn->error;
}
?>
这是我的表格:
<form action="add.php">
<table>
<tr>
<td>Username :</td> <td><input type="text" name="username"></td>
</tr>
<tr>
<td>Password :</td> <td><input type="text" name="username"></td>
</tr>
<tr>
<td>Hobbies:</td> <td><textarea name="hobby" id="hobby" cols="22" rows="7"></textarea></td>
</tr>
<tr>
<td> </td><td><input type="submit" name="submit"></td>
</tr>
</table>
</form>
答案 0 :(得分:1)
这是因为isset()
返回一个布尔值。
如果您想直接打印username
字段,您可以:
if(isset($_GET["username"])) {
echo $_GET["username"];
}
因此,您应该了解变量$alpha
,$beta
,$gamma
不包含您期望的实际字符串,而是一个布尔值
答案 1 :(得分:-1)
因为isset()函数检查是否设置了数组中的键,所以它不检查该值是否设置。在你的情况下;当您将表单发布到操作时,POST数组包含所有键,因此isset像往常一样返回1。我想你需要看一下php empty()函数。或者您可能想要使用isset()和empty()的混合。