fixed invalid array key php warnings

This commit is contained in:
2026-02-23 06:34:32 -05:00
parent 9cce143cf9
commit 11c876886a

View File

@@ -9,11 +9,11 @@
include("functions.php"); include("functions.php");
$print = $_REQUEST['print']; $print = $_REQUEST['print'] ?? NULL;
$tech = $_REQUEST['tech']; $tech = $_REQUEST['tech'] ?? NULL;
$pass = $_REQUEST['pass']; $pass = $_REQUEST['pass'] ?? NULL;
$login = $_REQUEST['login']; $login = $_REQUEST['login'] ?? NULL;
$cancel = $_REQUEST['cancel']; $cancel = $_REQUEST['cancel'] ?? NULL;
if ($cancel) { if ($cancel) {
session_destroy(); session_destroy();