こんにちは私は解決できない問題があります。mysqli_query()に2つ以上のパラメータが指定されています。
これは主に2つ以上のパラメータが必要だと私はちょうどプログラミングに新しいので、助けてください。
<?php
mysqli_connect("localhost","root","","search");
if(isset($_GET['search_button']))
{
$search = $_GET['search'];
if($search=="")
{
echo "<center> <b>Please Write something in Search Box! </b></center>";
exit();
}
$sql = "select * from website where site_key like'$search'";
$rs = mysqli_query($sql);
if(mysqli_num_rows($rs)<1)
{
echo "<center> <h4><b> Oops!!!, Sorry there is no result found to relate the word </h4> </center>";
exit();
}
echo "images for $search";
while($row = mysqli_fetch_array($rs))
{
echo "<td>
<table>
<tr>
<td>
<img src=img/$row[5]>
</td>
</tr>
</table>
</td>>";
}
}
?>
引数として渡される接続文字列mysqli_query()の構文を参照してください。 –