Add files via upload

This commit is contained in:
Fernando Méndez
2021-05-20 15:29:49 +02:00
committed by GitHub
parent 62d0602d70
commit fa4769d77b
49 changed files with 1532 additions and 102 deletions

View File

@ -0,0 +1,15 @@
<?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";
}
}
?>