phpdroid/notifications/add.php
2018-12-03 20:06:33 +01:00

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");