Browse Source

Created about.php

pull/1/head
jrtechs 7 years ago
parent
commit
854efd60b3
3 changed files with 27 additions and 1 deletions
  1. +21
    -0
      about.php
  2. +2
    -0
      games/highscore.php
  3. +4
    -1
      index.php

+ 21
- 0
about.php View File

@ -0,0 +1,21 @@
<?php
//5-19-17
include 'includes/header.php';
echo '<br><div class="w3-row">
<div class="w3-half w3-container ">';
//add stuff
echo '</div><div class="w3-half w3-container">';
include 'user/profile.php';
echo '</div>';
echo '</div>';
include 'includes/footer.php';
?>

+ 2
- 0
games/highscore.php View File

@ -12,6 +12,8 @@
<td>User Name</td>
<td>Score</td>
</tr></thead><tbody>';
$rank = 0;
while($row = mysqli_fetch_array($r))
{

+ 4
- 1
index.php View File

@ -42,7 +42,10 @@
echo '</div></div>';
echo '<div class="w3-half w3-container"><div id="repo1">';
//include('games/bamboofield.html');
echo '<script src="RepoJS/repo.js"></script>
<script>
$(\'#repo1\').repo({ user: \'jrtechs\', name: \'Panda-Quotes\' });
</script>';
echo '</div></div></div>';
include 'includes/footer.php';

Loading…
Cancel
Save