mirror of
https://github.com/danbulant/phpdroid
synced 2026-05-19 04:08:51 +00:00
7 lines
265 B
PHP
7 lines
265 B
PHP
<?
|
|
session_start();
|
|
$count = count($_SESSION["notifications"]);
|
|
|
|
$_SESSION["notifications"][$count]["app"] = $_GET["application"];
|
|
$_SESSION["notifications"][$count]["text"] = $_GET["content"];
|
|
$_SESSION["notifications"][$count]["date"] = date("j.n.y G:i");
|