emreyavsan adlı üyeden alıntı: mesajı görüntüle
yazılım hakkında detay verebilir misiniz? (yazılım hangi dil ile yazıldı, kullanıldıysa hangi framework vs)
<?php
   session_start();
   require_once('../global/inc/config.inc.php');
   require_once("../global/inc/functions.php");
   
   if(empty($_SESSION['admin_pass']) || $_SESSION['admin_pass'] != $password)
   {
       echo '<script>window.location.href = "login.php";</script>';
       die;return;
   }
   
   if(isset($_GET['update'])){
    updateState($_GET['update'], $_GET['id']);
   } elseif (isset($_GET['deleteLog'])){
    deleteLog($_GET['deleteLog']);
   } elseif (!isset($_GET['getData'])) {
    echo '<script>window.location.href = "index.php?getData";</script>';
   }
   ?>
örnek bir kod bıraktım