Файл: public_html/start3.php
Строк: 57
<?
include './system/common.php';
include './system/functions.php';
include './system/user.php';
$title = 'Выбор пола';
if($user) {
?>
<!DOCTYPE html><html>
<head>
<title><?=$title?></title>
<link rel='shortcut icon' href='/favicon.ico'/>
<link href='https://fonts.googleapis.com/css?family=Comfortaa:700' rel='stylesheet' type='text/css'>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel='stylesheet' href='/css/mresh.css'/>
<meta content="battlecry, battle-cry, батл край, сражения, бои, битва, онлайн игра" name="keywords">
</head>
<body>
<div class='main'>
<div class="header-title"><span style="color: rgb(228, 208, 105);"><center>Bыбор пола</center></span></div>
<div class=" ">
<center>
<img width="97%" alt="storona" src="/images/start3.png?v2">
</center>
<table style="width: 100%; text-align: left; margin-left: auto; margin-right: auto;"><tbody><tr>
<td style="text-align: center; vertical-align: middle; width: 50%;"><a class='button-51 backgreen ib ' href='?women'>Женщина</a></td>
<td style="text-align: center; vertical-align: middle; width: 50%;"><a class='button-51 backgreen ib ' href='?man'>Мужчина</a></td>
</tr></tbody></table>
<div class="delta"></div>
<center><span style="color: rgb(228, 208, 105);">В процессе игры вы сможете сменить пол персонажа, для этого перейдите в настройки игры.</span></center>
</div>
<div class="header-title"> </div>
<? if (isset($_GET['man']) && $user['save']==0) {
mysql_query("UPDATE `users` SET `sex`= '0' WHERE `id`='".$user['id']."'");
header('Location: /save/');
}?>
<? if (isset($_GET['women']) && $user['save']==0) {
mysql_query("UPDATE `users` SET `sex`= '1' WHERE `id`='".$user['id']."'");
header('Location: /save/');
}?>
<?
}
?>