Simple website with some JavaScript games.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
641 B

<?php
$dir = 2;
//used for high score
$game_id = 1;
//ini_set('display_errors', 1);
include '../includes/header.php';
echo '<div class="w3-row w3-padding-32">';
echo '<div class="w3-half w3-container">';
include('bamboofield.html');
echo '</div><div class="w3-half w3-container">';
//include('../includes/profile.php');
include('highscore.php');
echo '</div></div>';
echo '<div class="w3-row w3-padding-32">';
echo '<div class="w3-half w3-container">';
//edit user
include('../user/profile.php');
echo '</div><div class="w3-half w3-container">';
include('userscores.php');
echo '</div></div>';
include '../includes/footer.php';