Quote:
Originally Posted by BigJohnny
because that code isnt an sql query... i believe its a php script that needs to be run from vbulletin?!?!
you would need to add some includes i think, like global.php but im not sure about this, so i'll wait until someone who knows steps in 
|
The code I should have quoted for the mysql query is:
$result = mysql_query("SELECT forumid, title FROM forums order by forumid desc");
while($row = mysql_fetch_array($result))
{
echo "ForumID=".$row['forumid'] . " " . $row['title'];
echo "<br />";
};
_______
The error reported by vbulletin - in previous post - when running the "Execute SQL Query" from AdminCP is for the first line:
$result = mysql_query("SELECT forumid, title FROM forums order by forumid desc");