This question already has an answer here:
This is error line 125. Actually, I am new to MySQLi, so I am not able to understand how to convert MySQL to MySQLi.
This is my code:
<?php
$query = mysql_query("select * from upload ORDER BY id DESC") or die(mysql_error());
while ($row = mysql_fetch_array($query)) {
$id = $row['id'];
$name = $row['name'];
$date=$row['date'];
}
</div>