2016.5.28 新闻发布系统显示新闻标题
<?php
mysql_connect("localhost", "用户名", "密码"); //连接数据库管理系统
mysql_select_db("member"); //选择数据库
mysql_query("set character set utf8"); //设置数据库的字体为任意二进制都可以显示
mysql_query("set name utf8");
$result=mysql_query("SELECT * FROM `gonggao` order by gg_time desc limit 0,3"); //mysql_query() 函数执行一条 MySQL 查询。
$info=mysql_fetch_array($result); //查询的结果集赋值给变量$info
if ($info==false) {
?>
<tr>
<td height="20" align="center">暂无新闻公告!</td>
</tr>
<?php
}
else{
do{ //do..........while语句开头
?>
<tr>
<td height="20">
<div align="center">
<table width="180" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="16" height="5"><div align="center">sss</div></td> //这里的div是设置图标用的
<td width="164" height="24"><div align="left">
<a href="gonggao.php?id=<?php echo $info[gg_id];?>">
<?php //调用只显示新闻标题的前24个字符
echo substr($info[gg_title], 0,24);
if (strlen($info[gg_title])>24) {
echo "...";
}
?></a>
</div></td>
</tr>
</table>
</div>
</td>
</tr>
<?php
}
while($info=mysql_fetch_array($result)); //do.......while语句的执行
}
?>