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

1k Views Asked by At

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.

1

There are 1 best solutions below

2
On BEST ANSWER

Spelling mystake of "tableHeaders"

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

echo $this->Html->tableHeaders($th);