Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. <?php include('header.php'); ?>
  2. <div id="side-l">
  3. <?php include('sidebar.php'); ?>
  4. </div>
  5. <div id="side-r">
  6. <?php include('sidebar2.php'); ?>
  7. </div>
  8. <div id="content">
  9.  
  10.  
  11. <h2><?php echo $profile['name'];?></h2>
  12. <br>
  13. <div class="profile_content_item">
  14. <div class="profile_left_header">
  15. <?php echo $profile['name']?>'s Profile:
  16. </div>
  17. <div class="fav_container">
  18. <img align="left" vspace="5" hspace="6" src="<?php echo $profile['avatar_url'];?>" alt="Avatar" width="75" height="75" class="profile-header_avatar_img"/>
  19.  
  20.  
  21.  
  22.  
  23. Name: <?php echo $profile['name'];?> |
  24.  
  25.  
  26. Points: <?php echo $profile['points'];?> |
  27.  
  28. <?php echo PROFILE_PLAYS;?>: <?php echo $profile['plays'];?> <br><?php echo PROFILE_RATINGS;?>: <?php echo $profile['ratings'];?> | <?php echo PROFILE_COMMENTS;?>: <?php echo $profile['comments'];?> <?php echo $profile['admin_edit'];?>
  29. <br>
  30. <?php echo $profile['button1'];?><br>
  31. <span class="right_title"><?php echo PROFILE_JOINED;?>:</span> <?php echo $profile['join_date'];?><br>
  32. <span class="right_title"><?php echo PROFILE_LOCATION;?>:</span> <?php echo $profile['location'];?><br>
  33. <span class="right_title"><?php echo PROFILE_BIO;?>:</span> <?php echo $profile['about'];?><br>
  34. <span class="right_title"><?php echo PROFILE_WEBSITE;?>:</span> <?php echo $profile['website'];?><br>
  35.  
  36. </div>
  37. </div>
  38.  
  39. <div class="profile_content_item">
  40. <div class="profile_left_header">
  41. <?php echo USER_HIGHSCORES;?>
  42. </div>
  43. <div class="fav_container">
  44. <?php include('includes/profile/user_highscores.inc.php'); ?>
  45. </div>
  46. </div>
  47.  
  48. <div class="profile_content_item">
  49. <div class="profile_left_header">
  50. <?php echo $profile['name'].PROFILE_FAV_GAMES_HEADER;?>:
  51. </div>
  52. <div class="fav_container">
  53. <?php include('includes/profile/fav_games.inc.php'); ?>
  54. </div>
  55. </div>
  56.  
  57. <div class="profile_content_item">
  58. <div class="profile_left_header">
  59. <?php echo $profile['name'].PROFILE_COMMENTS_HEADER;?>
  60. </div>
  61. <div class="fav_container">
  62. <?php include('includes/profile/users_comments.inc.php'); ?>
  63. </div>
  64. </div>
  65.  
  66. <div class="ad_small_square">
  67. <?php advert('small_square'); ?>
  68. </div>
  69. <br style="clear:both;">
  70. </div>
  71. <?php include('footer.php'); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement