There is a code that adds lines to the file, but at the end of the file, and how to do what would add to the beginning of the file? And I also wanted to know if there is a way to add it to the 2nd line of the file?
<?php if ($_POST['']); $name = htmlspecialchars($_POST['name']); $link = htmlspecialchars($_POST['link']); $space = ' '; // строка, которую будем записывать со всеми переносами $text = "$name\n$link\n$space\n"; // открываем файл, если файл не существует, делается попытка создать его $fp = fopen("abc.txt", "a+"); // записываем fwrite($fp, $text); // закрываем fclose($fp); echo 'Данные записаны'; ?>