I'm trying to figure out how to use an array key that has a specific set of characters in front of a variable, but I simply can't figure out the correct syntax, and I've tried numerous variations.
Here's what I have so far, which doesn't work:
$_POST['game_{$game_id}']
If $game_id were to equal "47" for example, I'm trying to make it so the key is "game_47".
Does anyone know how I can do this correctly?