1
0
Fork 0
mirror of https://github.com/Alamantus/Lexiconga.git synced 2025-05-22 18:11:18 +02:00
Lexiconga/php/ajax_createaccountemailcheck.php

11 lines
158 B
PHP
Raw Normal View History

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