INCLUDE("dbconn.php");
$TABLE = "tblFairLib_hours";
//we order the result by pkID descending because the highest ID is the most resent result
//this means the first record displayed is the most recent.
$query = "SELECT fldContent FROM $TABLE ORDER BY pkID DESC";
$result = mysql_query($query, $dbConn);
echo mysql_error()." ";
while(list($content) = mysql_fetch_row($result))
{
echo "$content
";
}
?>
|
|