<?php
class Spisok
{
public function create()
{
if ($_POST) {
$Fam = $_POST['Fam'];
$Nam = $_POST['Nam'];
$Otch = $_POST['Otch'];
$file=fopen("abc.txt", 'a+');
fwrite($file,$Fam,$Nam,$Otch."\r\n");
fclose($file);
}
}
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<!--[if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script><![endif]-->
<title></title>
</head>
<body>
<form method="POST" >
Ваша Фамилия:<br />
<input type="text" name="Fam"><br />
Ваше Имя:<br />
<input type="text" name="Nam"><br />
Ваше Отчество:<br />
<input type="text" name="Otch"><br />
<input type="submit" value="Отправить" name="btn">
</form>
<input type="submit" value="Открыть файл" onclick="getdate">
</body>
</html>
<?php
class Spisok
{
public function create()
{
if ($_POST) {
$Fam = $_POST['Fam'];
$Nam = $_POST['Nam'];
$Otch = $_POST['Otch'];
file_put_contents("abc.txt", $file.$Fam.$Nam.$Otch."\r\n", FILE_APPEND);
}
}
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<!--[if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script><![endif]-->
<title></title>
</head>
<body>
<?
$spisok = new Spisok;
$spisok->create();
?>
<form method="POST" >
Ваша Фамилия:<br />
<input type="text" name="Fam"><br />
Ваше Имя:<br />
<input type="text" name="Nam"><br />
Ваше Отчество:<br />
<input type="text" name="Otch"><br />
<input type="submit" value="Отправить" name="btn">
</form>
<input type="submit" value="Открыть файл" onclick="getdate">
</body>
</html>