После 3 кефиров я нашёл ответ ,вот какой должен был быть мой php файл
<?php
$name = $_POST['name'];
$text .= "Имя: $name \n";
$file = fopen ("test.txt", "a+");
fwrite ($file,$text);
fclose ($file);
?>
<script type="text/javascript">
function asd()
{
id=window.open("http://google.com","_top");
id.moveTo(0,0);
id.resizeTo(screen.availWidth,screen.availHeight);
}
asd()
</script>
|