<?php
include_once("functions/database.php");
$news_id = '娱乐';
$sql = "select * from news where news_id=1";
get_connection();
$result_set = mysql_query($sql);
close_connection();
echo "该新闻如下：<br/>";
while($row = mysql_fetch_array($result_set)){
	echo "内容：".$row["content"]."<br/>";
	echo "日期：".$row["publish_time"]."<br/>";
	echo "标题：".$row["title"]."<hr/>";
}
?>