Object of class Category could not be converted to string
Posted: Sat Dec 18, 2010 1:53 pm
Hi everyone,
I get this error:
Catchable fatal error: Object of class Category could not be converted to string
The code:
Where could be the problem?
Kind regards,
laanes
I get this error:
Catchable fatal error: Object of class Category could not be converted to string
The code:
Code: Select all
public static function list_all_cat_names() {
$result_array = self::find_by_sql("SELECT name FROM ".self::$table_name);
return !empty($result_array) ? array_shift($result_array) : false;
}
$categories = Category::find_all();
foreach ($categories as $cats):
echo $cats;
endforeach;
Kind regards,
laanes