Ok, I did that and I'm still getting the same thing. Here is my code:
Code:
<?php
chdir('/home/penguink/public_html/forums');
require_once('/home/penguink/public_html/forums/global.php');
// Add the usual require stuff here
$wanted_userid = $_GET['u']; // The user id of the user you want the data from
$userinfo = fetch_userinfo($wanted_userid);
$posts = $userinfo['posts'];
$username = $userinfo['username'];
//$joindate = $userinfo['joindate']; // Unformatted
$joindate = vbdate($userinfo['joindate']); // Formatted date e.g. Mon 29th Aug
print "<h1>$username</h1>";
print "Posts: $posts";
print "<br />";
print "$username Joined On: $joindate";
?>
It outputs:
Pc1203
Posts: 1044
Pc1203 Joined On: 1177448760
- Pc1203