Файл: umor/rost/index.php
Строк: 73
<?php
include_once '../../sys/inc/start.php';
include_once '../../sys/inc/compress.php';
include_once '../../sys/inc/sess.php';
include_once '../../sys/inc/home.php';
include_once '../../sys/inc/settings.php';
include_once '../../sys/inc/db_connect.php';
include_once '../../sys/inc/ipua.php';
include_once '../../sys/inc/fnc.php';
include_once '../../sys/inc/user.php';
$set['title']='Узнай свой рост'; // заголовок страницы
include_once '../../sys/inc/thead.php';
title();
err();
aut();
echo "<link rel="stylesheet" type="text/css" href="servis.css"/>";
$form = "
<div class="h1"><div class="f1"><form action="total.php" method="post">
<input type="hidden" name="seenform" value="y">
<b>Для пацанов -></b><br></div>
Введите рост отца:</br>
<input type="number" name="po" size="20" maxlength="3" value="">см</br>
Введите рост матери:</br>
<input type="number" name="pm" size="20" maxlength="3" value="">см</br>
<input type="submit" value="Узнать рост!">
</form></div>";
if ($seenform != "у"):
print "$form";
endif;
$form = "
<div class="h1"><div class="f1"><form action="total.php" method="post">
<input type="hidden" name="seenform" value="x">
<b>Для девушек -></b><br></div>
Введите рост отца:</br>
<input type="number" name="do" size="20" maxlength="3" value="">см</br>
Введите рост матери:</br>
<input type="number" name="dm" size="20" maxlength="3" value="">см</br>
<input type="submit" value="Узнать рост!">
</form></div>";
if ($seenform != "x"):
print "$form";
endif;
include_once '../../sys/inc/tfoot.php';
?>