Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
index.html
<form action="pihecpisayfasi.php">
<input type="text" name="mesaj">
<input type="submit">
</form>
pihecpisayfasi.php
<?php
$mesaj=$_POST["mesaj"];
echo $mesaj;
?>