mirror of
https://github.com/jquery-validation/jquery-validation.git
synced 2025-12-14 20:35:47 +01:00
12 lines
166 B
PHP
12 lines
166 B
PHP
<?php
|
|
|
|
// Include the random string file
|
|
require 'rand.php';
|
|
|
|
// Begin a new session
|
|
session_start();
|
|
|
|
// Set the session contents
|
|
$_SESSION['captcha_id'] = $str;
|
|
|
|
?>
|