Здравствуйте, вот код:
<?php
$file_name = "index.php"
?>
<?php
if (!empty($_POST))
{
file_put_contents($file_name, $_POST['textpage']); // текст из textarea
}
?>
<form method="post" action="">
<textarea name="textpage" id="text" style="width: 100%; height: 400px;"><?php
echo file_get_contents($file_name);
?></textarea>
<input type="submit">
</form>
Вот код вначале:
<!DOCTYPE html>
<html>
<head>
<title>Тест</title>
<meta http-equiv="Content-Type" content="text/html; charsed=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Создаем вебинары, онлайн трансляции под ключ." />
<meta name="keywords" content="вебинары под ключ" />
<meta name="robots" content="index, follow">
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link type="text/css" class="cp-pen-styles" rel="stylesheet" href="/css/main.css" />
<link type="text/css" class="cp-pen-styles" rel="stylesheet" href="/css/bootstrap.css" />
<link type="text/css" class="cp-pen-styles" rel="stylesheet" href="/css/bootstrap.min.css" />
<link rel='stylesheet prefetch' href='https://use.fontawesome.com/releases/v5.0.13/css/all.css'>
<script type="text/javascript" src="/js/jquery.min.js"></script>
<script type="text/javascript" src="/js/bootstrap.min.js"></script>
</head>
<body>
Вот код в конце:
</body>
</html>
При записи должно получится так: Код вначале -> код из textaea -> и код в конце.
Как это реализовать?