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.
$admin = "admin";
$result = mysql_query("SELECT * FROM users");
while ($row = mysql_fetch_array($result)) {
mysql_query("INSERT INTO `pmessages` ( `title` , `message` , `touser` , `from` , `unread` , `date` ) VALUES ('$title', '$text', '" . $row['username'] . "', '$admin', 'unread', NOW())");
}