I tired that a few times.. and this is what I got
Database error in vBulletin 2.2.1:
Invalid SQL: Select threadid, title from post where userid='2462' ORDER BY postid DESC LIMIT 10'
mysql error: You have an error in your SQL syntax near ''' at line 1
mysql error number: 1064
Date: Saturday 01st of December 2001 01:03:03 PM
Script:
http://www.dlrarmy.com/forums/forums...fo&userid=2462
Referer:
http://www.dlrarmy.com/forums/index.php?
I am using this code
PHP Code:
$postsArray= $DB_site->query("Select threadid, title from post where userid='$userid' ORDER BY postid DESC LIMIT 10'");
if (!$postsArray)
$recentPosts = "none";
else {
while ($getRecentPosts=$DB_site->fetch_array($postsArray)) {
$recentPosts .="<a href='$bburl/showthread.php?threadid=" . $getRecentPosts[threadid] ."'>$getRecentPosts[title]</a><br>\n";
}
}