$bulletinid = $_GET['bulletinid'];
// echo "bulletin id=" . $bulletinid;
include('includes/dbconn.php');
$sql = "select * from bulletins where id=" . $bulletinid . " order by bulletin_headline ASC";
$sqlresult = mysql_query($sql);
?>
while($record = mysql_fetch_array($sqlresult, MYSQL_ASSOC))
{
$bulletin_date = date("Y-m-d",$record['bulletin_date']);
?>
echo $record['bulletin_headline']; ?> bulletin posted on echo $bulletin_date; ?> |
echo $record['bulletin_desc']; ?> |
} ?>
mysql_close(); ?>
|