thatboyjim,
Yes, you would use an SQL Query FROM php.
I would start by attempting to get the information...
$today = date("m/d/Y");
$query = "SELECT * from game_tbl WHERE game_date >= '$today' LIMIT 1";
game_tbl = your game game (as stored in your MySQL database)
game_date = The column that stores the game date.
If you post the code that you use to display the game info, I can help you further, if you need it.
good luck