📄 jobresumes.inc.php
字号:
<?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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -