Hi, I'm trying to parse a bit of code using the bbcode2 function. Whenever I run my code, I'm getting this error....
Database error in vBulletin :
Invalid SQL:
SELECT bbcodetag, bbcodereplacement, twoparams
FROM TABLE_PREFIXbbcode
mysql error: Table 'crucib1.TABLE_PREFIXbbcode' doesn't exist
mysql error number: 1146
Date: Sunday 19th of December 2004 11:49:31 AM
Script:
http://www.bane-online.comSCRIPTPATH
Referer: REFERRER
IP Address: IPADDRESS
So my question is, why is table_prefix showing up instead of my real table prefix? Here is my code that's trying to do all of this....
PHP Code:
require_once('/u/htdocs/crucib1/vbulletin/includes/config.php');
require_once('/u/htdocs/crucib1/vbulletin/includes/db_mysql.php');
$DB_site = new DB_Sql_vb;
$DB_site->appname = 'vBulletin';
$DB_site->appshortname = 'vBulletin (' . VB_AREA . ')';
$DB_site->database = $dbname;
$DB_site->connect($servername, $dbusername, $dbpassword, $usepconnect);
require_once("/u/htdocs/crucib1/vbulletin/includes/functions.php");
require_once("/u/htdocs/crucib1/vbulletin/includes/functions_bbcodeparse.php");
echo parse_bbcode2($row["pagetext"], 0, 0, 0, 1, 0, 1);
Thanks!