gpt4 book ai didi

php - 循环遍历 MYSQL 查询的结果并将其插入表中

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

我会尝试再次问这个问题。希望这次能更有意义!

我的网页上有一个用户可编辑的单元格。我想连接到 MYSQL 数据库并搜索一个字段以查找此单元格中输入的文本,对于找到的每个结果,我想向表中添加一个新行。我知道如何连接到数据库,并且知道如何通过 html 创建查询。我不知道并希望得到一些指导的是循环每个结果并使用变量来完成查询的机制!

我的添加行代码

<script>
function getsearchresults()
{
var table=document.getElementById("myTable");
var row=table.insertRow(-1);
var cell1=row.insertCell(0);
var cell2=row.insertCell(1);
var cell3=row.insertCell(2);
var cell4=row.insertCell(3);
cell1.innerHTML= Variable1heremaybe?;
cell2.innerHTML="Variable2heremaybe?;
cell3.innerHTML="Variable3heremaybe?;
cell4.innerHTML="Variable4heremaybe?;
}
</script>
</head>
<body>

<table style="margin-top:350px; margin-left:25px;" id="myTable" border="1">
<tr>
<td>column1 <div style="width: 100px"> </div></td>
<td>column2 <div style="width: 100px" > </div></td>
<td>column3 <div style="width: 100px" > </div></td>
<td>column4 <div style="width: 100px" > </div></td>

</table>

查询搜索代码

<?php
// Create connection
$con=mysqli_connect("bla","blabla","blablabla","blablabla");

// Check connection
if (mysqli_connect_errno($con))
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}

SELECT `Table1`.`Column1`
FROM Table1
WHERE (`Table1`.`Column1` Variableheremayb?)
ORDER BY `Table1`.`Column1` ASC
?>

任何帮助将不胜感激!

最佳答案

你可以这样做:这里我假设你已经成功连接到数据库

//first execute the query 

$result = mysqli_query("Your query");

//then fetch the result of each row using a loop

while($row = mysqli_fetch_assoc($result))
{
//here you can display the data or store it in a variable or anything else you want
// for example you want to display it inside div tag.
echo "<div>".$row["column1"]."</div>";
echo "<div>".$row["column2"]."</div>";
//and so on

}

希望这能对您有所帮助。

关于php - 循环遍历 MYSQL 查询的结果并将其插入表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17638290/

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