Check out Alice Chess, our featured variant for June, 2024.


[ Help | Earliest Comments | Latest Comments ]
[ List All Subjects of Discussion | Create New Subject of Discussion ]
[ List Earliest Comments Only For Pages | Games | Rated Pages | Rated Games | Subjects of Discussion ]

Single Comment

We're back[Subject Thread] [Add Response]
🕸Fergus Duniho wrote on Thu, Apr 20, 2017 02:00 AM UTC:

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";