Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
raiden каза:Код:$file = file("file.txt"); // $file[0] - 1 ред // $file[1] - 2 ред // и т.н. $file[7] = "Ново съдържание за ред 8-ми"; $txt = implode("\n", $file); $fp = fopen("file.txt", "w"); fwrite($fp, $txt); fclose($fp);