首页上一页 1 下一页尾页 1 条记录 1/1页
帮我看下这个问题mysql_driver_ResultSet::GetAssoc()
发表在PHP图书答疑
2009-07-22
是否精华
是
否
版块置顶:
是
否
Fatal error: Call to undefined method mysql_driver_ResultSet::GetAssoc() in D:\works\example\public.php on line 7
<?php
include_once "conn/conn.php";
include_once "config.php";
$sql = "select id,title from tb_public order by id";
$num = 4;
$rst = $conn->SelectLimit($sql,$num);
$arr = $rst->GetAssoc();
$smarty->assign('arr',$arr);
$smarty->display('public.tpl');
?>
<?php
include_once "conn/conn.php";
include_once "config.php";
$sql = "select id,title from tb_public order by id";
$num = 4;
$rst = $conn->SelectLimit($sql,$num);
$arr = $rst->GetAssoc();
$smarty->assign('arr',$arr);
$smarty->display('public.tpl');
?>