id)->fetchAll(PDO::FETCH_ASSOC); foreach ($games as $game) { $placeid = $game['id']; $placename = $game['Name']; $placethumbnail = handleGameThumb($game['id']); $games_html .= <<

{$placename}

EOT; } $body = <<
My Places:

    {$games_html}
EOT; pageHandler(); $ph->navbar = ""; $ph->footer = ""; $ph->pageTitle("My Places"); $ph->body = $body; $ph->output();