View file hashtag.io-2629a1a4ea078149b002e45e2e12bb946062c2b8/ajaxify/ajax_requests/u_checker_requests.php
<?php
if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == "xmlhttprequest") {
if (isset($_GET['value'])) {
$value = trim($_GET['value']);
include_once '../../config/class/needy_class.php';
include '../../config/class/login.class.php';
$login = new login_class;
$login->usernameChecker($value);
}
}
?>