gpt4 book ai didi

php - 在 PHP 中搜索并获得双重结果

转载 作者:行者123 更新时间:2023-11-29 06:35:13 25 4
gpt4 key购买 nike

这是我的 PHP 代码,我用它从 PHPMyAdmin 的数据库 Mysql 中进行搜索。但是当我得到结果时,它显示双倍。我不明白为什么是双的。如果它是 for 'foreach' 循环,那么我将使用什么来代替它?请帮我解决代码。

<?Php

?>
<html>
<head>
<style>
@media print {
#printPageButton {
display: none;
}
#another {
display: none;
}
}
.border {
border-style: double;
border-color: blue;
}
</style>
<title>Demo of Search Keyword using PHP and MySQL</title>
</head>

<body>
<?Php
error_reporting(0);
include "config_1.php";
$todo=$_POST['todo'];
$search_text=$_POST['search_text'];
if(strlen($serch_text) > 0){
if(!ctype_alnum($search_text)){
echo "Data Error";
exit;
}
}
if(isset($todo) and $todo=="search"){

$type=$_POST['type'];

$search_text=ltrim($search_text);
$search_text=rtrim($search_text);

if($type<>"any"){
$query="select * from billbagnan where name='$search_text'";
}
$count=$dbo->prepare($query);
$count->execute();
$no=$count->rowCount();
foreach ($dbo->query($query) as $row){
echo "
<table class='border' style='text-align:center;' width='900'>";
echo "</td><td width='400' valign=top>";
echo " Full records here ";
echo "<table><tr><th>ID</th><th>Name</th><th>Institution</th></tr>";
foreach ($dbo->query($query) as $row){
echo "<tr><td>$row[id]</td><td>$row[name]</td><td>$row[instn]</td>
</tr>";
}
echo "</table>";
echo "</td></tr></table>";
}
}
?>

最佳答案

您将查询嵌套在查询中,因此这很可能会生成包含所有数据的多个表。您还执行了 3 次查询(使用 query() 准备了 2 次)。

而是运行一次查询(prepare()execute()),如果有行,则循环结果...

// If there are rows
if ($count->rowCount() > 0 ) {
echo "<table class='border' style='text-align:center;' width='900'>";
echo "</td><td width='400' valign=top>";
echo " Full records here ";
echo "<table><tr><th>ID</th><th>Name</th><th>Institution</th></tr>";
// Loop over rows and display data
while ( $row = $count->fetch(PDO::FETCH_ASSOC)) {

您还使用了准备和执行,但没有使用绑定(bind)变量,因此您应该真正使用...

if($type<>"any"){
$query="select * from billbagnan where name=?";
$count=$dbo->prepare($query);
$count->execute([$search_text]);
}
else {
$query="select * from billbagnan";
$count=$dbo->prepare($query);
$count->execute();
}

关于php - 在 PHP 中搜索并获得双重结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54274218/

25 4 0
文章推荐: PHP