 |
include ("colrel_connect.php");
colrel_connect ()
or exit ();
$resultNotices = mysql_query ("select headline,text
from events
where status = 'ap'
and event_type = 'notice'
order by event_id DESC")
or exit ();
while ($rowNotices = mysql_fetch_row ($resultNotices))
{
# escape any special characters and print
print ("
$rowNotices[1]
\n");
}
mysql_free_result ($resultNotices);
?>
|
|