diff options
Diffstat (limited to 'user.php')
-rw-r--r-- | user.php | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/user.php b/user.php deleted file mode 100644 index 8685fcf..0000000 --- a/user.php +++ /dev/null @@ -1,24 +0,0 @@ -<?php -include_once 'includes/db_inc.php'; -include_once 'model/User.php'; - -session_start(); - -$current = new User(); - -if (!isset($_GET['name'])) { -} else { - $current->get_by_name($_GET['name'], $dbc); -} -?> -<!DOCTYPE html> -<html> -<head> - <title><?php echo $current->name; ?>'s Profile - cflip.net forum</title> -</head> -<body> - <?php include_once "templates/header.php" ?> - <h1><?php echo $current->name; ?></h1> - member since <?php echo date('M d, Y', strtotime($current->date)); ?> -</body> -</html>
\ No newline at end of file |