mirror of
				https://github.com/Alamantus/Lexiconga.git
				synced 2025-11-03 17:57:00 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			No EOL
		
	
	
		
			241 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			No EOL
		
	
	
		
			241 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
// require_once("../required.php");
 | 
						|
require_once('config.php');
 | 
						|
require_once(SITE_LOCATION . '/php/functions.php');
 | 
						|
 | 
						|
$email = htmlspecialchars($_GET['email']);
 | 
						|
 | 
						|
if (EmailExists($email)) {
 | 
						|
	echo "email exists";
 | 
						|
} else {
 | 
						|
	echo "ok";
 | 
						|
}
 | 
						|
?>
 |