Ejemplo n.º 1
0
<?php

/**
 * 招聘中心 列表文件
 *
 * @author		Arthur(ArthurXF@gmail.com)
 * @copyright	(c) 2006 by bizeway.com
 * @version		$Id$
 * @package		ArthurXF
 * @subpackage	xingfu_Notice
 */
require_once 'config/config.inc.php';
require_once "class/xingfu_Notice.class.php";
$objWebInit = new xingfu_Notice();
$objWebInit->iscached($arrMOutput);
$objWebInit->db();
if (empty($_GET['page'])) {
    $intPage = 1;
} else {
    $intPage = intval($_GET['page']);
}
$arrWhere = array();
$arrLink = array();
$arrWhere[] = "pass='******'";
$type_title = '';
if (!empty($_GET['type_id'])) {
    $intTypeID = intval($_GET['type_id']);
    $type_id = $intTypeID - 1;
    $type_title = $arrMType[$type_id]['type_title'];
    $objWebInit->fetchAllChildID($_REQUEST['type_id'], $arrMType, $arrChild);
    $typeStr = implode($arrChild['type_id'], ',');