newsession.php 166 B

123456789101112
  1. <?php
  2. // Include the random string file
  3. require 'rand.php';
  4. // Begin a new session
  5. session_start();
  6. // Set the session contents
  7. $_SESSION['captcha_id'] = $str;
  8. ?>