Game Courier Game Logs
This page shows logs for games played on Game Courier, a versatile web-based play-by-mail system that currently supports over 1100 Chess variants. By default, only publicly viewable unfinished games are shown. The form below lets you select various viewing options. To make a move in one of your own games, enter your userid in the form below, click Submit, then click on your name in the Next Move For column.
Game | Log | Last Modified | Last Move by | Next Move for |
---|---|---|---|---|
Yáng Qí | playtester-cvgameroom-2023-317-789 | Wed, Dec 20, 2023 | Play Tester has won. | |
Yáng Qí | sagig72-fergus-2004-325-424 | Sat, Feb 12, 2022 | Sagi Gabay has won. | |
Yáng Qí | per31-cvgameroom-2020-104-844 | Tue, May 26, 2020 | vitaliy ravitz has won. | |
Yáng Qí | per31-cvgameroom-2019-192-233 | Thu, Dec 26, 2019 | Diogen Abramelin has won. | |
Yáng Qí | per31-cvgameroom-2019-241-428 | Thu, Oct 17, 2019 | Greg Strong has won. | |
Yáng Qí | per31-cvgameroom-2019-56-874 | Mon, Apr 08, 2019 | Daniel Zacharias has won. | |
Yáng Qí | per31-cvgameroom-2018-277-844 | Thu, Feb 28, 2019 | Сергей Бугаевский has won. | |
Yáng Qí | per31-cvgameroom-2018-235-543 | Wed, Jan 30, 2019 | per hommerberg has won. | |
Yáng Qí | per31-cvgameroom-2018-231-410 | Tue, Sep 04, 2018 | Сергей Бугаевский has won. | |
Yáng Qí | fergus-cvgameroom-2010-351-107 | Thu, Jan 25, 2018 | Game Drawn | |
Yáng Qí | catugo-cvgameroom-2017-330-709 | Mon, Dec 11, 2017 | Erik Lerouge has won. | |
Yáng Qí | sacredchao-cvgameroom-2017-95-358 | Mon, Apr 10, 2017 | Erik Lerouge has won. | |
Yáng Qí | mgawalangmagawa-cvgameroom-2012-222-568 | Thu, Nov 17, 2016 | Jenard Cabilao has won. |
MySQL
This script queried the GameLogs table with the following prepared query:
SELECT * FROM GameLogs WHERE Game = :game AND Priority = 0 AND (Privacy = :privacy OR Opponent = '' OR Opponent IS NULL) ORDER BY Lastmod DESC
To avoid SQL injection, most of the values are passed separately. The values in the query are determined by the values in your URL's query string or by what is entered into the form at top. When you leave a field blank, it normally means that it will leave that field out of the query, not that it will search for an empty value. Here is a recreation of what the SQL query would look like with the placeholders replaced by the values:
SELECT * FROM GameLogs WHERE Game = 'Yáng Qí' AND Priority = 0 AND (Privacy = 0 OR Opponent = '' OR Opponent IS NULL) ORDER BY Lastmod DESC
The underlying MySQL is handled by MariaDB. A few fields give you multiple options for how to use them. You can search for an exact string match, an exact non-match, a LIKE match, which allows the use of a few wildcards, and a REGEXP match, which allows for very complicated pattern matching. Since these may slow down the search, they should be avoided unless you have a special need for them.
Filtering by Userid
If you enter a userid, it will list only those games in which that id identifies one of the players. Under the Next Move for column, for each game in which it is that user's turn to move, it will include a link for him to go to the PBM and make his next move. If a given user is playing any games that are not open to public view, he will need to enter his password to view these games on this page. If all your games are publicly viewable, then you don't need to include your password on this page.
How to Delete a Log
To get links for deleting logs, you must first enter a userid. To delete a log, you must be one of the players listed in the log. When you click on the link to delete a log, you will be asked for your password. Enter it and click on the Delete button. If your userid matches one of the players, and if your password is correct, the log will be deleted.
Written by Fergus Duniho
WWW Page Created: 21 July 2017