$row['id'], 'p_id' => $row['p_id'], 'title' => $row['title'], 'nav_title' => $row['nav_title'], 'keywords' => $row['keywords'], 'description' => $row['description'], ); } switch ($page) { default: $content['content'] = (orphan($content['p_id'])) ? $row['content'] : wrap($row['content']); break; } // Main Category ID if ($content['p_id'] == -1) $main_id = 0; else $main_id = ($content['p_id'] == 0) ? $content['id'] : mainID($content['p_id']); } $main_id = (empty($main_id)) ? 0 : $main_id; // Left Navigation $content['navigation'] = (orphan($content['p_id']) || empty($content['id'])) ? left_nav($main_id,true) : left_nav($main_id); // merge data and template and return to $html for output $html = return_template($content,$template); // Output HTML page echo $html; exit(); ?>