syntax cleanup

This commit is contained in:
2017-10-22 20:39:20 -07:00
parent bb1051e490
commit 3729258931
109 changed files with 847 additions and 1641 deletions
+8 -11
View File
@@ -11,20 +11,17 @@ $p=$char['y'];
$result = mysql_query("SELECT * FROM mrpg_users WHERE name='$u'");
while($row = mysql_fetch_array($result))
{
$uid=$row['id'];
$x=$row['x'];
$y=$row['y'];
while($row = mysql_fetch_array($result)) {
$uid=$row['id'];
$x=$row['x'];
$y=$row['y'];
if(md5($row['password'])!=$p)
{
header("Location: index.php");
exit;
if(md5($row['password'])!=$p) {
header("Location: index.php");
exit;
}
}
makestatimage($uid);
?>
?>