require 'smarty.inc.php'//引入smarty
require 'configs/mysql_db.php'//引入配置文件
global $_smarty
$sql="select * from news"
$res=mysql_query($sql)
$_row=array()
while(r =mysql_fetch_assoc($res)){
$_row[]= r
}
$_smarty->assign('row',$_row)
$_smarty->display('index.html')
?>
注意mysql_fetch_assoc只能取出一条记录
HTML:
<body>
<br />
<hr>
假如time表示时间字段,title表示标题字段,具体根据你自己的字段来
{<foreach from=$row item=a>}
{<$a.time>}<br />
{<$a.title>}<br />
{</foreach>}
</body>
先去弄明白数据库是什么,页面前台是什么,所谓的后台是什么。然后。剩下的就会程序怎么跟数据库联系就行了。
所有数据,都在数据库里,你要从数据库里取出来,然后程序根据需要把这些数据呈现出来,仅此而已。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)