gpt4 book ai didi

php - 如何使用输入类型框从数据库中选择数据并在同一页面上打印

转载 作者:行者123 更新时间:2023-11-30 00:49:24 24 4
gpt4 key购买 nike

这是我的代码,我遇到问题,这是一个输入类型标签,而不是使用 PHP 从数据库中选择的数据。这是该代码的第一部分是 html 格式的广告第二部分是 php我想从数据库中选择数据,将数据选择到与我们在湿漉漉的购物车网站上看到的相同的页面

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"         
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>phpSelect</title>
</head>
<body>
Insert Age for search
<form action="#" method="post" >
<input type="text" id="val" name="resValue" />
<input type="submit" value="submit" /></form>
<?php
if(isset($_POST['submit']))
{
$res=$_POST['resValue'];

echo $res;
}
//echo $res;
$con=mysqli_connect("localhost","root","","my_db");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$result = mysqli_query($con,"SELECT * FROM Persons where Age=25");
echo "<table border='1'>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>";
while($row = mysqli_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['FirstName'] . "</td>";
echo "<td>" . $row['LastName'] . "</td>";
echo "</tr>";
}
echo "</table>";
mysqli_close($con);
?>
</body>
</html>

最佳答案

尝试将 SQL 更改为此

SELECT * FROM Persons where Age='".mysql_escape_string($formValue['val'])."'

关于php - 如何使用输入类型框从数据库中选择数据并在同一页面上打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21108043/

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