Unsupported scripts and control panel web app for a hosting company
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. ?>