| Posted by Speedzor on Tue 9 Feb 2010 11:42 | 264 views
- Syntax: PHP
- Expires: never
- Report
- IMG
- Download
-
|
- {
- $category = new PlatformCategory($_GET['cat_id']);
- debug($categories);
- debug($category);
- if($category->get_parent_id() == NULL){
- $link = '<a href="class_list.php">' . '..' . '</a>';
- } else {
- $parent_id = $category->get_parent_id();
- $link = '<a href="class_list.php?cat_id="'.$parent_id.'">' . '..' . '</a>';
- }
- $data[] = array('cat'.$category->get_parent_id(), 'folderup', $link, '', 'cat'.$category->get_parent_id());
- debug($data);
