Clint if you can upload a PHP page and you know the Database username and password you can do this.
The Database schema for PHPBB (Nuke whetever) is pretty intutive.
PHP Code:
<?
/*includes/connect.php*/
/*--------- DATABASE CONNECTION INFO---------*/
$hostname="localhost";
$mysql_login="myusername";
$mysql_password="mypassword";
$database="mydatabase";
// connect to the database server
if (!($db = mysql_pconnect($hostname, $mysql_login , $mysql_password))){
die("Can't connect to database server.");
}else{
// select a database
if (!(mysql_select_db("$database",$db))){
die("Can't connect to database.");
}
}
?>
PHP Code:
<?
include("includes/connect.php");
// now you are connected and can query the database
// CLINT WRITE YOUR QUERY HERE
$request = mysql_query("select field1,field2 from table");
// loop through the results with mysql_fetch_array()
while($row = mysql_fetch_array($result)){
echo $row[0]." / ".$row[1]."<br>\n";
}
// don't forget to close the mysql connection
mysql_close();
?>