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