Warning: Missing argument 1 for template::menu_left(), called in D:\AppServ\www\mc\mc\theme\default\container.php on line 6 and defined in D:\AppServ\www\mc\mc\function\page.php on line 8
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in D:\AppServ\www\mc\mysql.php on line 10
page.php
class template{
function include_page($page,$theme){
if($page=="" and $page=="index"){
include("theme/".$theme."/temp/index.php");
}
}
function menu_left($db){
$sql = "SELECT * FROM `phoomin201_mcc`.`".$db."`menu";
$n = query_num($sql);
if($n!=0){
while($m = query_array($sql)){
$menu .= '<li><a href="'.$m['url'].'">'.$m['text'].'</a></li>';
}
return $menu;
}else{}
}
}