jobresumes.inc.php
来自「UCH求职招聘插件。 1.个人简历发布(可设置简历状态隐私」· PHP 代码 · 共 35 行
PHP
35 行
<?php
/*********************/
/* */
/* Version : 5.1.0 */
/* Author : RM */
/* Comment : 071223 */
/* */
/*********************/
if ( !defined( "IN_UCHOME" ) )
{
exit( "Access Denied" );
}
$uid = $_SGLOBAL['supe_uid'];
$perpage = 10;
$start = empty( $_GET['start'] ) ? 0 : intval( $_GET['start'] );
$classid = empty( $_GET['classid'] ) ? 1 : intval( $_GET['classid'] );
if ( !empty( $_GET['classid'] ) )
{
$classurl = "&classid=".$classid;
}
$theurl = "job.php?ac=jobresumes".$classurl;
$count = 0;
ckstart( $start, $perpage );
$active = array( " class=\"active\"" );
$query = $_SGLOBAL['db']->query( "SELECT c.*,n.id,n.uid,n.title,n.department,n.corpid,r.resumetitle,r.workstatus,r.resumestatus,r.name,r.sex,r.birthyear,r.birthmonth,r.birthday,r.description,r.uid FROM ".tname( "job_collect" )." AS c , ".tname( "job_resumes" )." AS r ,".tname( "job_newjobs" )." AS n WHERE c.apply=".$classid." AND c.jobid=n.id AND n.uid=".$uid." AND c.cuid=r.uid ORDER BY c.dateline DESC LIMIT ".$start.",".$perpage );
while ( $value = $_SGLOBAL['db']->fetch_array( $query ) )
{
$list[] = $value;
++$count;
}
$multi = array( );
$multi = smulti( $start, $perpage, $count, $theurl );
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?