No not really, I write it and it does not work the way I think it should then I delete and start over. I have a very small amount that I started on again. I can post that but I have not got the form recreated again.
?php
include "open_session.php";
if (!isset($mainfile)) include "mainfile.php";
include "config.php";
include "header.php";
$index =0;
$query = "SELECT email FROM members";
$result = mysql_query ($query);
while ($row = mysql_fetch_array($result)) {
echo "{$row['email']} <br>";
}
?>
Thanks