1
0
Fork 0
mirror of https://github.com/Alamantus/Lexiconga.git synced 2025-03-23 11:58:55 +01:00
Lexiconga/php/ajax_createaccountemailcheck.php
2015-11-02 17:25:08 -07:00

11 lines
No EOL
158 B
PHP

<?php
require_once("../required.php");
$email = htmlspecialchars($_GET['email']);
if (EmailExists($email)) {
echo "email exists";
} else {
echo "ok";
}
?>