Method HtmlHelper::tableheader does not exist [CORE\cake\libs\view\helper.php, line 154] [closed]

StackOverflow https://stackoverflow.com/questions/7820976

i am using cake php and i need that use tableheader but i face with this error

Method HtmlHelper::tableheader does not exist [CORE\cake\libs\view\helper.php, line 154]

code is :

$th = array ('sggs','ba','aa');
echo $this->Html->tableheader($th);

thanks.

有帮助吗?

解决方案

Spelling mystake of "tableHeaders"

$th = array ('sggs','ba','aa');

echo $this->Html->tableHeaders($th);
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top