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
$stid1 = oci_parse($conn, "select firstname,lastname,win_percent,lc,wc from player,(select lid,(wc/(lc+wc))*100 as win_percent,lc,wc from (select lid,count(*) as lc from loser group by lid), (select wid,count(*)as wc from winner group
by wid) where lid=wid and (lc+wc)>=50 order by (wc/(lc+wc)) desc) where rownum<2 and pid=lid");
$r1 = oci_execute($stid1);
$num = oci_fetch_row($stid1);
if(!$r1)
{
}
else
{
echo "<center><table><tr><td><h3>".$num[0] . " " . $num[1] . " has winning percent of " . round($num[2],2) . ".</h3>