Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- UserCake Version: 1.4
- http://usercake.com
- Developed by: Adam Davis
- */
- require_once("models/config.php");
- $UID = $_GET["ID"];
- ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <?php include("headerinclude.php"); ?>
- <title>Profile</title>
- </head>
- <body>
- <div id="wrapper">
- <div id="content">
- <div id="left-nav">
- <?php include("layout_inc/left-nav.php"); ?>
- <div class="clear"></div>
- </div>
- <div id="main">
- <h1>User Profile</h1>
- <p>Welcome to <strong><?php echo $UID->display_username; ?></strong>'s profile.</p>
- <p>Your account type is: <strong><?php $group = $UID->groupID(); echo $group['Group_Name']; ?></strong></p>
- <p>Your current balance is <strong><?php echo $UID->balance(); ?></strong>Μ</p>
- <p>You joined on <?php echo date("l \\t\h\e jS Y",$UID->signupTimeStamp()); ?> </p>
- </div>
- </div>
- </div>
- <?php include("footer.php"); ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement