2015-11-03 01:25:08 +01:00
|
|
|
<?php
|
2015-12-01 00:08:43 +01:00
|
|
|
// require_once("../required.php");
|
|
|
|
require_once('config.php');
|
|
|
|
require_once(SITE_LOCATION . '/php/functions.php');
|
2015-11-03 01:25:08 +01:00
|
|
|
|
|
|
|
$email = htmlspecialchars($_GET['email']);
|
|
|
|
|
|
|
|
if (EmailExists($email)) {
|
|
|
|
echo "email exists";
|
|
|
|
} else {
|
|
|
|
echo "ok";
|
|
|
|
}
|
|
|
|
?>
|