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.
<?php
$welcome = file_get_contents("welcome.txt");
echo "$welcome";
?>
<?php
echo "<form method=post>";
echo "Съобщение: <input type=text name=message><p>";
echo "<input type=submit value=Промени></form><p>";
$message = $_POST['message'];
if("$message" == "") exit;
file_put_contents("welcome.txt","$message");
echo "Готово";
?>