Close but no cigar...
<?
mysql_connect("localhost", "username", "password");
mysql_select_db("testdatabase");
if (!$result = mysql_query("SELECT * FROM newone"))
{
echo 'SQL ERROR:'.mysql_error();
}
else
{
if (mysql_num_rows($result)==0)
{
echo 'no results';
}
else
{
while ($row = mysql_fetch_array($result, MYSQL_ASSOC))
{
echo $row["firstName"];
echo " ";
echo $row["lastName"];
echo " <br>";
}
}
}
?>
and read this just to clarify what's going on:
http://www.hvt-automation.nl/yapf/faq.php?cmd=viewitem&itemid=12
A forum, a FAQ, email notification, what else do you need?