Files
EQN/appServer/distquake_dowload_userprofile.php
2017-09-22 15:16:26 +02:00

45 lines
1.1 KiB
PHP

<?php
$ini = parse_ini_file("conf.ini", true);
mysql_connect($ini['db']['host'],$ini['db']['user'],$ini['db']['pass']);
mysql_select_db($ini['db']['db']);
if ($ini['db']['log']=="1"){
$arrival_time=microtime(true);
$filename=basename(__FILE__);
$filename="log_".$filename.".txt";
$chunck=strval($arrival_time)." ".$_SERVER['REQUEST_URI']."\r\n";
file_put_contents($filename,$chunck,FILE_APPEND);
}
mysql_set_charset("utf8");
$nick=$_REQUEST['nick'];
$password=$_REQUEST['password'];
$sql=mysql_query("select ID,user_code from contest_nick where nick='$nick' and pwd='$password' limit 1");
if (mysql_num_rows($sql))
{
$user_code=mysql_result($sql,0,"user_code");
$id=mysql_result($sql,0,"ID");
$match=1;
}
else
{
$match=0;
}
if ($match==1)
{
$sql=mysql_query("select nick,country,town,sex,birth from contest_nick where ID=$id limit 1");
while($e=mysql_fetch_assoc($sql))
$output[]=$e;
print(json_encode($output));
}
else
{
print("wrog_user");
}
mysql_close();
?>