Размер файла: 1.93Kb
<?php
require_once '../core/system.php';
$header = 'Второй шаг';
require_once '../core/head.php';
if($user['save']==1){
header('Location: /');
exit();
}
if($user['step1']>0){$_SESSION['err'] = 'Империя уже выбрана';
header('Location: step-3'); exit();}
switch($act) {
default:
break;
case 'mol':
if(!empty($_GET['act'])){
if(!isset($err)) {
mysql_query("UPDATE `user` SET `plem`='mol', `step1`='1' WHERE `id` = '$user[id]' ");
header('Location: step-3');
exit();
}
}else{header('Location: ?'); $_SESSION['err'] = 'Укажите данные';exit();}
break;
case 'ogn':
if(!empty($_GET['act'])){
if(!isset($err)) {
mysql_query("UPDATE `user` SET `plem`='ogn', `step1`='1' WHERE `id` = '$user[id]' ");
header('Location: step-3');
exit();
}
}else{header('Location: ?'); $_SESSION['err'] = 'Укажите данные';exit();}
break;
case 'plem':
if(empty($_GET['pol'])){$err = 'Выберите пол!';
header('Location: step-1');
exit();}
echo '<div class="mli"><div class="empty2"></div><center> Две империи, Сарма и Кадар, сражаются за контроль над землями, но время от времени вынуждены стать плечом к плечу и сражаться с общим врагом - темной силой. На чьей ты стороне? </center><div class="empty2"></div></div><hr>';
echo'<div class="foot"><table width="100%" border="0" cellpadding="0" cellspacing="0" style="color:#E5CBB7">
<tbody>
<tr>';
echo'<div class="empty2"></div>
<td align="center"><a href="step-2?act=mol'.(!empty($inv['id'])?'&inv='.$inv['id']:null).'"><img src="/images/start/step-1-mol.png"></br>Империя Сарма</a></td> <td align="center"><a href="step-2?act=ogn'.(!empty($inv['id'])?'&inv='.$inv['id']:null).'"><img src="/images/start/step-1-ogn.png"></br>Империя Кадар</a></td></tbody></table></div>';
break;
}
require_once '../core/foot.php';
?>