Файл: bind.php
Строк: 169
<?
header("Cache-Control: no-cache");
if ($ver=="wml")header ("Content-type:text/vnd.wap.wml; charset=utf-8");
else header("Content-Type:text/html; charset=UTF-8");
require("inc.php");
$link = connect_db();
list($row, $id, $ps, $fsize1, $fsize2) = check_login($link);
require("version.php");
$us=$row["user"];
$bind1=$row['bind1'];
$bind2=$row['bind2'];
$bind3=$row['bind3'];
$bind4=$row['bind4'];
if(!isset($go)){
if ($ver=="wml"){
echo $xml;
echo $dtd;
echo "<wml>n";
echo "<head><meta http-equiv="Cache-Control" content="no-cache" forua="true"/></head>n";
echo "<card id="bind" title="Клавиши">n";
echo "<p align="center">n";
}else{
echo "<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">";
echo "<html xmlns="http://www.w3.org/1999/xhtml">";
echo "<head><link rel="stylesheet" type="text/css" href="css/css.css"/>";
echo "<title>Клавиши</title>";
echo "<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/></head><body>";
echo "<div align="center">";
echo "<form method="POST" action="bind.php?$ses&go=rew&ref=$ref" name="auth">n";
}
echo $fsize1;
echo "<b>Сказать:</b><br/>";
echo $fsize2;
echo "<input size="1" name="bind1" maxlength="1" format="*N" value="$bind1"/><br/>";
echo $fsize1;
echo "<b>Обновить:</b><br/>";
echo $fsize2;
echo "<input size="1" name="bind2" maxlength="1" format="*N" value="$bind2"/><br/>";
echo $fsize1;
echo "<b>История:</b><br/>";
echo $fsize2;
echo "<input size="1" name="bind3" maxlength="1" format="*N" value="$bind3"/><br/>";
echo $fsize1;
echo "<b>Прихожая:</b><br/>";
echo $fsize2;
echo "<input size="1" name="bind4" maxlength="1" format="*N" value="$bind4"/><br/>";
echo $fsize1;
echo $divide;
echo $fsize2;
if ($ver=="wml"){
echo $fsize1;
echo "<anchor title="go">Изменить!<go href="bind.php?$ses&go=rew&ref=$ref" method="post">n";
echo "<postfield name="bind1" value="$(bind1)"/>n";
echo "<postfield name="bind2" value="$(bind2)"/>n";
echo "<postfield name="bind3" value="$(bind3)"/>n";
echo "<postfield name="bind4" value="$(bind4)"/>n";
echo "</go></anchor>n";
echo $fsize2;
}else{
echo "<input type="submit" value="Изменить!" name="enter"><br/>n";
}
echo "<br/>n";
echo $fsize1;
echo $divide;
echo "<a href="cabinet.php?$ses&ref=$ref">← Личное</a><br/>";
echo "<a href="enter.php?$ses&ref=$ref">← На улицу</a>";
echo $fsize2;
if ($ver=="wml")echo "</p></card></wml>n";
else echo "</div></body></html>n";
mysql_close ($link);
exit;
}
if (!ctype_digit($bind1)) { header("Location: index.php"); die; }
if (!ctype_digit($bind2)) { header("Location: index.php"); die; }
if (!ctype_digit($bind3)) { header("Location: index.php"); die; }
if (!ctype_digit($bind4)) { header("Location: index.php"); die; }
if (!isset($error)) {$result = mysql_query ("Select * users where id = '".$id."'");
if (mysql_affected_rows() == 0) {$error = "database error...";
}else{
$ins_str = "Update users set bind1 = '".$bind1."',bind2 = '".$bind2."',bind3 = '".$bind3."',bind4 = '".$bind4."' where id ='".$id."'";
}
if (mysql_query ($ins_str)) {
$msg = "Настройки Клавиш изменены";
}else{
$error = " ".mysql_error()." ";
}
}
mysql_close($link);
if (isset($error)) {
if ($ver=="wml"){
echo $xml;
echo $dtd;
echo "<wml>n";
echo "<card id="error" title="error" ontimer="bind.php?$ses&ref=$ref"><timer value="10"/>n";
echo "<do type="prev" label="Back"><prev/></do>n";
echo "<p align="center">";
}else{
echo "<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">";
echo "<html xmlns="http://www.w3.org/1999/xhtml">";
echo "<head><link rel="stylesheet" type="text/css" href="css/css.css"/>";
echo "<title>Ошибка</title>";
echo "<META HTTP-EQUIV="Refresh" CONTENT="2; URL=bind.php?$ses&ref=$ref">";
echo "<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/></head><body>";
echo "<div align="center">";
}
echo $fsize1;
echo "$errorn";
echo $fsize2;
if ($ver=="wml")echo "</p></card></wml>n";
else echo "</div></body></html>n";
exit;
}
if ($ver=="wml"){
echo $xml;
echo $dtd;
echo "<wml>n";
echo "<card id="ok" title="OK" ontimer="cabinet.php?$ses&ref=$ref"><timer value="10"/>n";
echo "<p align="center">";
}else{
echo "<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">";
echo "<html xmlns="http://www.w3.org/1999/xhtml">";
echo "<head><link rel="stylesheet" type="text/css" href="css/css.css"/>";
echo "<title>Ок!</title>";
echo "<META HTTP-EQUIV="Refresh" CONTENT="2; URL=cabinet.php?$ses&ref=$ref">";
echo "<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/></head><body>";
echo "<div align="center">";
}
echo $fsize1;
echo "<b>$msg</b>n";
echo $fsize2;
if ($ver=="wml")echo "</p></card></wml>n";
else echo "</div></body></html>n";
?>