Delete assets directory

This commit is contained in:
Fernando Méndez
2021-05-26 09:00:59 +02:00
committed by GitHub
parent 2c1f8da1c7
commit 6955e99e7e
53 changed files with 0 additions and 6566 deletions

View File

@ -1,15 +0,0 @@
<?php
include('../../../assets/php/config.php');
include('../includes/user_dao.php');
$bd = new UserDAO('complucine');
if($bd){
$user = $bd->selectUserEmail(strtolower($_GET["email"]));
if ($user->data_seek(0)) {
echo "!avaliable";
}
else{
echo "avaliable";
}
}
?>