Delete assets directory

This commit is contained in:
Fernando Méndez
2021-07-02 17:53:29 +02:00
committed by GitHub
parent 49ba6554f9
commit d9ca15a065
51 changed files with 0 additions and 7863 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->selectUserName(strtolower($_GET["user"]));
if ($user->data_seek(0)) {
echo "!avaliable";
}
else{
echo "avaliable";
}
}
?>