Add files via upload

This commit is contained in:
Fernando Méndez
2021-05-26 09:03:02 +02:00
committed by GitHub
parent a5c8dd4ff8
commit cf3f36c9d4
41 changed files with 5652 additions and 0 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";
}
}
?>