gpt4 book ai didi

php - 使用 html 搜索和 php post 以 WHERE 条件进行选择。返回空白表

转载 作者:可可西里 更新时间:2023-11-01 08:36:12 26 4
gpt4 key购买 nike

任务非常简单。使用 html 表单,将姓氏发布到连接到 myAdmin 数据库的 php 代码中,并返回与 html 搜索中发布的姓氏表单关联的名字和姓氏。我仔细检查了我的数据库,以及我正在使用的连接 php。信息在数据库中,我的 connection.php 文件对于访问和操作同一个数据库的其他文件运行良好。无论如何,这是我的 html 代码:

<html>
<body>
<form action="where.php" method="post">
Lastname: <input type="text" name="lastname" />
<input type="submit" name="search" />
</form>
</body>
</html>

和我发布的 php 代码:

<?php
include('connection.php');

$sql = "SECLECT * FROM PERSONS WHERE LastName ='$_POST[lastname]'";
$result = mysql_query($sql);
?>

<table border='1'>
<tr>
<td>Firstname</td>
<td>Lastname</td>
</tr>

<?php
while($row = mysql_fetch_array($result))
{
?>
<tr>
<td><?php echo $row['FirstName'] ?></td>
<td><?php echo $row['LastName'] ?></td>
</tr>

<?php
}
?>
</table>

<?php
mysql_close($con);
?>

有人知道为什么当我搜索一个有效的姓氏时,我得到一个只有标题但没有值的表格吗?

最佳答案

您在查询中添加了“SECLECT”。这是SELECT

关于php - 使用 html 搜索和 php post 以 WHERE 条件进行选择。返回空白表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11801388/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com