📄 regform.php
字号:
<?php
define( "ROOTPATH", "" );
include( ROOTPATH."config.inc.php" );
include( ROOTPATH."language/".$sLan."_".$charset.".php" );
include( ROOTPATH."includes/SysGlobal.php" );
include( ROOTPATH."includes/pro.php" );
include( ROOTPATH."includes/func/common.inc.php" );
include( ROOTPATH."includes/func/reg.inc.php" );
include( ROOTPATH."includes/func/db.inc.php" );
readconfig( );
$SiteName = $CONF['SiteName'];
$SiteHttp = $CONF['SiteHttp'];
$SiteEmail = $CONF['SiteEmail'];
$CatchOpen = $CONF['CatchOpen'];
$PAGEINFO['coltype'] = "member";
$PAGEINFO['pagename'] = "regform";
$NowMenuid = "2";
$MenuInfo = menuinfo( $NowMenuid );
$Secure = "0";
$PageTitle = $strRegister;
$step = $_POST['step'];
$membertypeid = $_REQUEST['membertypeid'];
$user = $_POST['user'];
$password = $_POST['password'];
$repass = $_POST['repass'];
$question = $_POST['question'];
$answer = $_POST['answer'];
$company = $_POST['company'];
$name = $_POST['name'];
$sex = $_POST['sex'];
$yy = $_POST['yy'];
$mm = $_POST['mm'];
$dd = $_POST['dd'];
$addr = $_POST['addr'];
$tel = $_POST['tel'];
$mov = $_POST['mov'];
$fax = $_POST['fax'];
$postcode = $_POST['postcode'];
$email = $_POST['email'];
$url = $_POST['url'];
$zoneid = $_POST['zoneid'];
$Province = $_POST['Province'];
$catid = $_POST['catid'];
$passtype = $_POST['passtype'];
$passcode = $_POST['passcode'];
$qq = $_POST['qq'];
$msn = $_POST['msn'];
$maillist = $_POST['maillist'];
$bz = $_POST['bz'];
if ( $url == "" )
{
$url = "http://";
}
if ( $sex == "1" )
{
$CHKman = " checked";
}
if ( $sex == "2" )
{
$CHKwoman = " checked";
}
if ( $step == "add" )
{
$Notice = checkform( );
}
memberform( );
$FMuser = $FM['user'];
$FMpassword = $FM['password'];
$FMrepass = $FM['repass'];
$FMcompany = $FM['company'];
$FMname = $FM['name'];
$FMsex = $FM['sex'];
$FMbirthday = $FM['birthday'];
$FMzoneid = $FM['zoneid'];
$FMcatid = $FM['catid'];
$FMaddr = $FM['addr'];
$FMtel = $FM['tel'];
$FMmov = $FM['mov'];
$FMfax = $FM['fax'];
$FMpostcode = $FM['postcode'];
$FMemail = $FM['email'];
$FMurl = $FM['url'];
$FMpasstype = $FM['passtype'];
$FMpasscode = $FM['passcode'];
$FMqq = $FM['qq'];
$FMmsn = $FM['msn'];
$FMbz = $FM['bz'];
$INuser = $IN['user'];
$INpassword = $IN['password'];
$INrepass = $IN['repass'];
$INcompany = $IN['company'];
$INname = $IN['name'];
$INsex = $IN['sex'];
$INbirthday = $IN['birthday'];
$INzoneid = $IN['zoneid'];
$INcatid = $IN['catid'];
$INaddr = $IN['addr'];
$INtel = $IN['tel'];
$INmov = $IN['mov'];
$INfax = $IN['fax'];
$INpostcode = $IN['postcode'];
$INemail = $IN['email'];
$INurl = $IN['url'];
$INpasstype = $IN['passtype'];
$INpasscode = $IN['passcode'];
$INqq = $IN['qq'];
$INmsn = $IN['msn'];
$INbz = $IN['bz'];
$FUuser = $FU['user'];
$FUpassword = $FU['password'];
$FUrepass = $FU['repass'];
$FUcompany = $FU['company'];
$FUname = $FU['name'];
$FUsex = $FU['sex'];
$FUbirthday = $FU['birthday'];
$FUzoneid = $FU['zoneid'];
$FUcatid = $FU['catid'];
$FUaddr = $FU['addr'];
$FUtel = $FU['tel'];
$FUmov = $FU['mov'];
$FUfax = $FU['fax'];
$FUpostcode = $FU['postcode'];
$FUemail = $FU['email'];
$FUurl = $FU['url'];
$FUpasstype = $FU['passtype'];
$FUpasscode = $FU['passcode'];
$FUqq = $FU['qq'];
$FUmsn = $FU['msn'];
$FUbz = $FU['bz'];
$BirthYear = birthyear( );
$BirthMonth = birthmonth( );
$BirthDay = birthday( );
$PassList = passlist( );
$ZoneList = zonelist( );
$IndustryList = industrylist( );
pageset( $PAGEINFO['coltype'], $PAGEINFO['pagename'] );
$PageTitle = pagedef( $PageTitle, $PSET['pagetitle'] );
$MetaKey = pagedef( $PageTitle, $PSET['metakey'] );
$MetaCon = pagedef( $PageTitle, $PSET['metacon'] );
$PageTempStr = loadtemp( ROOTPATH."templates/".$MenuInfo['skin']."/header.html" );
$PageTempStr .= loadtemp( ROOTPATH."templates/".$MenuInfo['skin']."/".$PSET['tempfile'] );
$PageTempStr .= loadtemp( ROOTPATH."templates/".$MenuInfo['skin']."/foot.html" );
$PageAll = showtemp( $PageTempStr );
echo $PageAll;
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -