</h3>
        </div>           
          <div class="bdr-bot-red" style="margin:0 0 5px;"></div>
        </div>
        </div>
         <div id="game_leader_board">
         <table class="highscore_table table-nonfluid table table-striped">
         <thead>
         <tr>
         <th>Date</th>
         <th>Score</th>
         </tr>
         </thead>
         <tbody>             
    <?php 
$sore_games = getGameScoreByUserId($user_id, $game_id);
if ($sore_games > 0) {
    while ($score_game = mysql_fetch_array($sore_games)) {
        if ($score_game['user_game_score_id'] > 0) {
            ?>
            
         <tr>
         <td><p><?php 
            echo date("d-m-Y", strtotime($score_game['createdAt']));
            ?>
</p></td>
         <td><p><?php 
            echo $score_game['user_game_score'];
            ?>
</p></td>
         </tr>
</h3>
        </div>           
          <div class="bdr-bot-red" style="margin:0 0 5px;"></div>
        </div>
        </div>
         <div id="game_leader_board">
         <table class="highscore_table table-nonfluid table table-striped">
         <thead>
         <tr>
         <th>Date</th>
         <th>Score</th>
         </tr>
         </thead>
         <tbody>             
    <?php 
$sore_games = getGameScoreByUserId($session_id, $game_detail['game_id']);
if ($sore_games > 0) {
    while ($score_game = mysql_fetch_array($sore_games)) {
        ?>
             
         <tr>
             <td><p>
             <?php 
        echo date("d-m-Y", strtotime($score_game['createdAt']));
        ?>
                 </p></td>
         <td><p><?php 
        echo $score_game['user_game_score'];
        ?>
</p></td>
         </tr>