我正在使用蛋糕php,我需要使用tableheader,但我遇到了这个错误
Method HtmlHelper::tableheader does not exist [CORE\cake\libs\view\helper.php, line 154]代码为:
$th = array ('sggs','ba','aa');
echo $this->Html->tableheader($th);谢谢。
发布于 2011-10-19 20:21:54
"tableHeaders“的拼写
$th = array ('sggs','ba','aa');
echo $this->Html->tableHeaders($th);https://stackoverflow.com/questions/7820976
复制相似问题