Tried that this time around, and now it's giving me the unix epoch; January 1, 1970.
VBB is working just fine, though.
This is a mystery to me. Is there something between vbdate and the output of the formatted date in vbulletin that properly calculates the format?
PHP Code:
include('mysql.php');
require_once('./global.php');
echo vbdate("m, d, Y", $timestamp, false, false, false, true);
$timestamp is being called from the url as date.php?timestamp
------------
EDIT : Close this thread, I feel like a total idiot. I hadn't been properly calling the timestamp. I needed a _GET[]. Silly me, i guess. All is working fine! Thanks.