//图片上传参数 $objWebInit->arrGPic = $arrGPic; $objWebInit->db(); //访问权限检查 if (!$objWebInit->checkPopedomG($_SESSION['user_id'])) { check::AlertExit('对不起,您没有权限访问此页', -1); } if ($_SERVER["REQUEST_METHOD"] == "POST") { if ($_FILES['Filedata']['name'] != "") { $_POST['UploadFile'] = $objWebInit->uploadInfoImage($_FILES['Filedata']); } //取得图片链接的文件类型 if (!empty($_POST['UploadFile'])) { if ($_POST['UploadFile'] != '') { $_POST['FileExt'] = strrchr($_POST['UploadFile'], "."); } else { $_POST['FileExt'] = strrchr($_POST['weblogo'], "."); } $_POST['picflag'] = 1; } $objWebInit->saveinfo($_POST, 0); echo "<script>" . check::WindowLocation('index.php', 'page=' . $_GET['page']) . "</script>"; exit; } // 输出到模板 $arrMOutput["template_file"] = "admin.html"; $arrMOutput["smarty_assign"]['arrType'] = $arrMType; $arrMOutput["smarty_assign"]['FileCallPath'] = $arrGPic['FileCallPath']; $arrMOutput["smarty_assign"]['MAIN'] = $arrGSmarty['admin_main_dir'] . 'submit.htm'; $objWebInit->output($arrMOutput);