2009-08-25 12:16:42 +00:00
|
|
|
<?php
|
|
|
|
/*
|
2010-01-15 16:10:20 +00:00
|
|
|
***************************************************************
|
|
|
|
| Copyright (c) 2007-2010 Clip-Bucket.com. All rights reserved.
|
|
|
|
| @ Author : ArslanHassan
|
|
|
|
| @ Software : ClipBucket , © PHPBucket.com
|
|
|
|
***************************************************************
|
2009-08-25 12:16:42 +00:00
|
|
|
*/
|
2009-11-04 10:27:40 +00:00
|
|
|
define("THIS_PAGE",'myaccount');
|
2010-01-01 13:01:53 +00:00
|
|
|
define("PARENT_PAGE",'home');
|
2009-11-04 10:27:40 +00:00
|
|
|
|
2009-08-25 12:16:42 +00:00
|
|
|
require 'includes/config.inc.php';
|
|
|
|
$userquery->logincheck();
|
|
|
|
|
2009-12-31 08:59:12 +00:00
|
|
|
subtitle(lang("my_account"));
|
2009-11-04 10:27:40 +00:00
|
|
|
assign('user',$userquery->get_user_details(userid()));
|
|
|
|
template_files('myaccount.html');
|
|
|
|
display_it();
|
2009-08-25 12:16:42 +00:00
|
|
|
?>
|