You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ($_GET["comp_id"] && $_GET["cat_id"] && $_GET["round"])
{
include "db.php";
//
$qualified = mysql_num_rows(strict_mysql_query("SELECT round FROM $regstable WHERE cat_id=" .$_GET["cat_id"]. " AND round=" .$_GET["round"]. " AND comp_id=" .$_GET["comp_id"]));
if ($qualified)
{
$alreadyhastimes = mysql_num_rows(strict_mysql_query("SELECT round FROM $timestable WHERE cat_id=" .$_GET["cat_id"]. " AND round=" .$_GET["round"]. " AND comp_id=" .$_GET["comp_id"]));
$competitor = strict_mysql_query("SELECT name FROM $compstable WHERE id=".$_GET["comp_id"]);