Check out Janggi (Korean Chess), our featured variant for December, 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

Game Courier Developer's Guide. Learn how to design and program Chess variants for Game Courier.[All Comments] [Add Comment or Rating]
🕸📝Fergus Duniho wrote on Tue, Dec 10 05:47 PM UTC in reply to Daniel Zacharias from Mon Dec 9 08:57 AM:

I have now got it working. I think the issue was that PHP has put some restrictions on the use of the $GLOBALS variable. I had to rewrite the code so that I was not passing $GLOBALS to a function. For example, something like array_key_exists($key, $GLOBALS) was no longer working to tell whether a variable name existed, and I had to use something like isset($GLOBALS[$key]) instead.