Unsupported scripts and control panel web app for a hosting company
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

sessions.php 181B

1234567891011121314
  1. <?PHP
  2. session_name('UTDsignup');
  3. session_start();
  4. if (!isset($_SESSION['stage'])) {
  5. $_SESSION['stage'] = 1;
  6. }
  7. if (isset($_GET['ref'])) {
  8. $_SESSION['ref'] = $_GET['ref'];
  9. }
  10. ?>