moved game id to the end of the title.

This commit is contained in:
2018-11-29 22:04:54 -05:00
parent cb3ac528d2
commit b827a15c67

View File

@@ -58,7 +58,7 @@ foreach ($games as $key => $value) {
echo "<img src=\"".$ps4->thumbnailurl($key)."\" border=0 weight=\"80px\" height=\"80px\">";
echo "</div>";
echo "<div class=\"info\">";
echo "(". $games[$key]["game_id"] .") <strong>". $games[$key]["game_name"] ."</strong>";
echo "<strong>". $games[$key]["game_name"] ."</strong> (". $games[$key]["game_id"] .")";
echo "<br/>";
echo "Total Time Played : <a href=\"".$_SERVER['PHP_SELF']."?details=".$games[$key]["game_id"]."\">". $ps4->playtime($games[$key]["game_total_time"],true) ."</a>";
echo "<br/>First Played on : ". $ps4->secondsToDate($games[$key]["game_played_first"]);