I want to display several data in a page but it only appears one, instead of appearing the image of each register for example it appears only the one of a which is the last one made.
$query = "SELECT * FROM animestb LIMIT 20000";
$con = mysql_query($query) or die(mysql_error());
while ($row = mysql_fetch_array($con)) {
$nome = $row['nome'];
$link = $row['link'];
$img = $row['img'];
$id = $row['id'];
}
?>