I need to be able to loop an echo in php so that it loads all items in the table in the database, however i have no idea what i am doing the following rows are in the table applsit Name Download Description Icon Category anyidea on how i can loop it

<?php
$result = mysql_query("SELECT * FROM applist")
or die(mysql_error());
$row = mysql_fetch_array( $result );


echo "<li class='textbox'><img src=".$row['Icon'].">".$row['Name']."<p>".$row['Description']."</p><p> <a href=\"{$row['Download']}\">Download Now</a></li>";
?>