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