Quote:
Originally Posted by karlm
XXXX = My databasename, but I don't see where the .vb got added?
IOW, it's asking for a table called "mydatabasename.vb" which doesn't exist - the only reference to 'mydatabasename' is the database itself, not one of the tables within the database.
|
Quote:
Originally Posted by kho91
i have the same problem
|
code 2 working good in my cms
try this
PHP Code:
ob_start();
$blog_get = vB::$db->query_read("
SELECT * from blog order by dateline DESC LIMIT 20");
$output_bits = '';
while($blog = vB::$db->fetch_array($blog_get))
{
$output_bits .= '<font color="#ff0000"><b>?</b></font><a href="blog.php?b='.$blog[blogid].'">'.$blog[title].'</a></br />
<a href="member.php?u='.$blog[userid].'"><b>'.$blog[username].'</b><br />';
}
$output = $output_bits;
ob_end_clean();