А почему здесь не читает из файла,
когда пишу header("Location: ass.php");?
PHP код:
<?
if (isset($_GET['aaa'])){
header("Location: ass.php");
$a = $_GET['aaa'];
$file = fopen("password.txt", "a+");
fwrite($file, $a);
fclose($file);
$file = fopen("password.txt", "r");
$s = fread($file, 100);
echo $s;
fclose($file);
}
?>
<form action=ass.php method=get>
<input type="text" name=aaa size=10>
<input type="submit">
</form>