D:\host\scoreman.in\kleague2026\cmd.php

<?php

include('dbconnect.php');
include('jfunctions.php');
include('functions.php');

if(!empty($_GET))
{
$cmd=$_GET["cmd"];
$dt=$_GET["dt"];

echo $cmd.$dt;
echo $_SESSION['teamf'];
if($cmd=="assignchest" and $dt!="")
{
   assignchestno1($dt);
}

} else {
	echo "Invalid Requests".$_GET["filterteam"];
 }
?>