8 lines
182 B
PHP
8 lines
182 B
PHP
<?php
|
|
session_start();
|
|
if (!empty($_SESSION['num']) and $_SESSION['num']==strtolower($_GET['number'])){
|
|
echo 'success';
|
|
}elseif (!strtolower(empty($_GET['number']))){
|
|
echo "no";
|
|
}
|
|
?>
|