Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
<?php
include ("inc/config.php");
$user = "dqdomraz";
$sql = mysql_query("SELECT username FROM i_users WHERE username = '$user' limit 1");
if(mysql_num_rows($sql) == 0) {
for($i=0;$i<=strlen($user);$i++){
$r = substr($user,$i,1);
$search .= "username='".str_replace($r,"_",$user)."' ";
if($i != strlen($user)){
$search .= 'OR ';
}
}
$sql = mysql_query("SELECT username FROM i_users WHERE $search");
}
$r = mysql_fetch_array($sql);
echo $r['username'];
?>