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

<?php

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

if(!empty($_GET))
{
$cmd=$_GET["cmd"];
$team=$_GET["team"];
$seq=$_GET["seq"];
//echo $_SESSION['teamf'];
if($cmd=="assignchest")
{
    assignchestno($con,$team,$seq);
    echo $team;
}

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