<html> <head> <style type="text/CSS"> body { font-family:Arial; font-size:8pt; color:Black; } </style> </head> <body> <?php include "includes/config.php"; $con = mysql_connect($config['MasterServer']['servername'], $config['MasterServer']['username'], $config['MasterServer']['password']) or die(mysql_error()); mysql_select_db($config['Database']['dbname'], $con) or die(mysql_error()); $select = mysql_query("SELECT * FROM `thread`ORDER BY `lastpostid` DESC LIMIT 0,10") or die(mysql_error()); $address = "http://vbulletin.com/"; // Change to your address. Example: "http://vbulletin.com/forum/". while ($row=mysql_fetch_array($select)) { echo "<img src=\"{$address}/images/statusicon/thread_new.gif\" /> <a href=\"{$address}/showthread.php?id={$row['threadid']}{$row['threadid']}\" target=\"_self\">{$row['title']}</a>"; echo "<br />"; } ?> </body></html>
<html> <head> <style type="text/CSS"> body { font-family:Arial; font-size:8pt; color:Black; } </style> </head> <body> <?php include "includes/config.php"; $con = mysql_connect($config['MasterServer']['servername'], $config['MasterServer']['username'], $config['MasterServer']['password']) or die(mysql_error()); mysql_select_db($config['Database']['dbname'], $con) or die(mysql_error()); $select = mysql_query("SELECT * FROM `thread` WHERE `forumid`!='3' ORDER BY `lastpostid` DESC LIMIT 0,10") or die(mysql_error()); $address = "http://vbulletin.com/"; // Change to your address. Example: "http://vbulletin.com/forum/". while ($row=mysql_fetch_array($select)) { echo "<img src=\"{$address}/images/statusicon/thread_new.gif\" /> <a href=\"{$address}/showthread.php?id={$row['threadid']}{$row['threadid']}\" target=\"_self\">{$row['title']}</a>"; echo "<br />"; } ?> </body></html>
<html> <head> <style type="text/CSS"> body { font-family:Arial; font-size:8pt; color:Black; } </style> </head> <body> <?php include "includes/config.php"; $con = mysql_connect($config['MasterServer']['servername'], $config['MasterServer']['username'], $config['MasterServer']['password']) or die(mysql_error()); mysql_select_db($config['Database']['dbname'], $con) or die(mysql_error()); $select = mysql_query("SELECT * FROM `thread` WHERE `forumid`!='3' AND `forumid`!='5' AND `forumid`!='10' ORDER BY `lastpostid` DESC LIMIT 0,10") or die(mysql_error()); $address = "http://vbulletin.com/"; // Change to your address. Example: "http://vbulletin.com/forum/". while ($row=mysql_fetch_array($select)) { echo "<img src=\"{$address}/images/statusicon/thread_new.gif\" /> <a href=\"{$address}/showthread.php?id={$row['threadid']}{$row['threadid']}\" target=\"_self\">{$row['title']}</a>"; echo "<br />"; } ?> </body></html>