Just open a text editor, and put in (small change in query from above since the name of the table is 'forum', not 'forums'):
Code:
<?php
require_once('./global.php');
$result = mysql_query("SELECT forumid, title FROM forum order by forumid desc");
while ($row = mysql_fetch_array($result))
{
echo "ForumID=".$row['forumid'] . " " . $row['title'];
echo "<br />";
};
?>
Save as whatever.php, upload via ftp, and point your browser to it and it will spit it all out. Change 'desc' to 'asc' if you wish it to be in ascending order instead.