File "log-20251206202230.php"
Full Path: /home/xgsotb2m/public_html/spo/panel/process/log-20251206202230.php
File size: 254 bytes
MIME-type: --
Charset: utf-8
<?php
require '../../config.php';
session_start();
if(isset($_POST['login'])){
if($_POST['user']==PNL_USERNAME && $_POST['pass'] == PNL_PASSWORD){
$_SESSION['user']=$_POST['user'];
echo "SUCCESS";
}else{
echo "FAILED";
}
}
?>