[ List Earliest Comments Only For Pages | Games | Rated Pages | Rated Games | Subjects of Discussion ]
Check out Janggi (Korean Chess), our featured variant for December, 2024.
Check out Janggi (Korean Chess), our featured variant for December, 2024.
I fixed edititem.php. The problem wasn't with the mysql query but with what it did in a while loop that cycled through the results of the query. When the query was commented out, it never went through the while loop. Within the while loop were some lines of the form
$string = $string . "bla bla bla" . "more stuff" . "etc";
The problem went away when I changed these to use something of the form
$string .= "bla bla bla" . "more stuff" . "etc";