我对php/ajax/mysql仍然很新。 不管怎样,Im创建搜索功能,该功能正在适当退回Im所收集的数据。
In brief, I have a mysql database set up. A php website that has a search function. I m now trying to add a link to a mysql database search rather than just showing the results.
在我的搜寻中。 php,对应线正在做罚款,但笔款=没有退还任何款项。 我只是想像这种呼声,而是与我的Sql php记录的联系。 我失踪了一点简单吗?
//echo $query;
$result = mysqli_query($link, $query);
$string = ;
if($result) {
if(mysqli_affected_rows($link)!=0) {
while($row = mysqli_fetch_array($result,MYSQLI_ASSOC)) {
echo <p> <b> .$row[ title ]. </b> .$row[ post_ID ]. </p> ;
$string .= "<p><a href= set-detail.php?recordID=".$row->post_ID." >".$row->title."</a></p>";
}
} else {
echo No Results for :" .$_GET[ keyword ]. " ;
}