First connect to your database :
$connect = mysql_connect($host,$bdd_username,$bdd_password);
mysql_select_db($bdd,$connect);
$request = "SELECT * FROM $table";
$action = mysql_query($request) or die('SQL Error!<br>'.$sql.'<br>'.mysql_error());
then
while($data = mysql_fetch_array($action))
{
$email = $data[email];
echo $email;
echo ("<br>");
}
This means that while there are entries a new $email value will be written on the page
Hope this helps
COnspi