0

私は次のコードを使用しています

require 'Smarty/libs/Smarty.class.php';
$smarty = new Smarty;
$sel=mysql_query("select id, name from form");  
$smarty->assign('contact', $db->getRow($sql));
$smarty->display('testfunction.tpl');

エラーが発生しています:

Fatal error: Call to a member function getRow() on a non-object in D:\xampp\htdocs\smarty\testfun.php on line 21
4

1 に答える 1

1

$dbオブジェクトを宣言していません。代わりにこれを使用してください:

$smarty->assign('contact', mysql_fetch_row($sel));
于 2012-08-12T08:40:12.377 に答える