SOLVED!!!
trying to run a single query in a forumblock, and refering to a old post Forum block stuff
anyway trying to get this snippit to run but constantly getting function not found....
code snippet AFTER reading This post from 2005
my own code
Both give excaktly same error :
Fatal error: Call to undefined method vB_Registry::query() in C:\xampp\xampp\htdocs\emod\includes\block\html.php(95) : eval()'d code on line 25
Why ?
trying to run a single query in a forumblock, and refering to a old post Forum block stuff
anyway trying to get this snippit to run but constantly getting function not found....
code snippet AFTER reading This post from 2005
Code:
$getclasslist = $this->registry->query("SELECT * FROM ".TABLE_PREFIX."egr"); while($row= $this->registry->db->fetch_array($getclasslist)) {
Code:
$getclasslist = $vbulletin->db->query("SELECT * FROM ".TABLE_PREFIX."egr"); while($row= $vbulletin->db->fetch_array($getclasslist)) {
Fatal error: Call to undefined method vB_Registry::query() in C:\xampp\xampp\htdocs\emod\includes\block\html.php(95) : eval()'d code on line 25
Why ?
Comment