I wrote a small query to the database to output all data from the database, and it displays only one first.
$latters = mysql_query("SELECT * FROM latters"); $latterslink = mysql_fetch_array($latters); while($latterslink = mysql_fetch_array($latters)) { echo $latterslink[param]; } where param is a kind of column in your table.
Source: https://ru.stackoverflow.com/questions/375789/
All Articles