I am making a website for my high school annual project. The following error occurs in the php file :
Warning: mysqli_query() expects parameter 1 to be mysqli, null given in /host/home1/jbts/html/db/Plot-log.php on line 89
this is php source.
<?php
$link=mysqli_connect("localhost","xxxx","xxxxxxxxx","jbts");
if (!$link)
{ echo "MySQL error : "; echo mysqli_connect_error(); exit(); }
mysqli_set_charset($link,"utf8");
$sql = "select * from Plot-log";
$result = mysqli_query($link, $sql);
?>
and I used in html file like this.
<tr>
<? while($row=mysqli_query($con, $sql)){ ?>
<tr>
<td> <?=$row[0]?></td>
<td> <?=$row[1]?></td>
<td> <?=$row[2]?></td>
</tr>
<?
}
?>
i need your help... plz :)