on ownrproc.php at
if($action=="deljdg")
under
$res = mysql_query("DELETE FROM ibwf_judges WHERE uid='".$who."'");
add
$res = mysql_query("DELETE FROM ibwf_judges WHERE id='".$who."'");
$res = mysql_query("DELETE FROM ibwf_judges WHERE fid='".$who."'");
so you'll delete anything on database about the judge removed,
in some mobile phones using only
$res = mysql_query("DELETE FROM ibwf_judges WHERE uid='".$who."'");
something remains in judge list when show it.
'cause you eliminate only UID but not ID and FID.
if($action=="deljdg")
under
$res = mysql_query("DELETE FROM ibwf_judges WHERE uid='".$who."'");
add
$res = mysql_query("DELETE FROM ibwf_judges WHERE id='".$who."'");
$res = mysql_query("DELETE FROM ibwf_judges WHERE fid='".$who."'");
so you'll delete anything on database about the judge removed,
in some mobile phones using only
$res = mysql_query("DELETE FROM ibwf_judges WHERE uid='".$who."'");
something remains in judge list when show it.
'cause you eliminate only UID but not ID and FID.
Comment