PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
while ($row = mysql_fetch_array($sql))
{
//Do what you want here. Each column name is the associative index to $row which is an array
echo $row['id'];
}