<?php
include('dbconnect.php');
include('jfunctions.php');
include('functions.php');
?>
<html>
<body>
<?php
$stype=$_GET["stype"];
$team=$_GET["team"];
if($team=="All Entries")
{
$team=NULL;
}
$_SESSION['teamf']=$team;
//echo $stype. $team;
listentries("$stype",$team);
?>
</body>
</html>