http://www.volga-vhf.ru/registration/ вот ссылка на саму страницу регистрации
вот само наполнение страницы
<link rel="stylesheet" href="http://www.volga-vhf.ru/
php/css/validationEngine.jquery.css" type="text/css" media="screen" title="no title" charset="utf-8" />
<script src="http://www.volga-vhf.ru/
php/js/jquery.js" type="text/javascript"></script>
<script src="http://www.volga-vhf.ru/
php/js/jquery.validationEngine.js" type="text/javascript"></script>
<form method="post" action="http://volga-vhf.ru/wp-content/plugins/wp-exec-
php/write.
php">
<label for="call">Позывной<font color="red">*</font></label>
<input class="validate[required,custom[onlyNumber],length[0,100]] text-input" type="text" class="formular" name="call"/><br/>
<label for="name">Имя<font color="red">*</font></label>
<input class="validate[required,custom[onlyLetter],length[0,100]] text-input" type="text" class="formular" name="name"/><br/>
<label for="sname">Фамилия<font color="red">*</font></label>
<input class="validate[required,custom[onlyLetter],length[0,100]] text-input" type="text" class="formular" name="sname"/><br/>
<label for="norobot">Проверочный код<font color="red">*</font></label>
<input class="input" type="text" name="norobot"/><br/>
<img src="http://volga-vhf.ru/wp-content/plugins/wp-exec-
php/captcha.
php"/>
<input type="submit" value="Отправить данные" />
</form>
<font size=1>Поля отмеченные знаком <font color="red">*</font> обязательны к заполнению</font>
Скрипт выводящий данные файла
<?
php$arr = file("http://volga-vhf.ru/wp-content/plugins/wp-exec-
php/file.txt");
echo "<table border=1>";
foreach ($arr as $key => $val) {
$tmp_arr = explode(" ", $val);
// строка таблицы = строка файла
echo "<tr>";
foreach ($tmp_arr as $k => $v) {
echo "<td>".$v."</td>";
}
echo "</tr>";
}
echo "</table>";
?>