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.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
</head>
<body>
<?php if(file_exists('comments.txt')) { include('comments.txt'); } ?>
<form name="form1" action="write.php" method="post">
<input type="text" name="user" /><br />
<textarea name="msg" cols="20" rows="5"></textarea><br />
<input type="submit" value="Добави Коментар" />
</form>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
</head>
<body onload="window.location.href='index.php';">
<?php
$msg=$_POST['msg'];
$msg=stripSlashes($msg);
$user=$_POST['user'];
$user=stripSlashes($user);
if (file_exists("comments.txt"))
{
$file=fopen("comments.txt","a");
fwrite($file,"$user<br>$msg</br>\n");
fclose($file);
}
?>
</body>
</html>