I got everything going regarding PHP widgets and successfully fetched my DB.
<?php
$con = mysql_connect("mywebsite.com","DB","password");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("pages", $con);
$result = mysql_query("SELECT ebayid, reason, DATE_FORMAT(date, '%M %d, %Y')
FROM `blacklist` ORDER BY `ebayid` ASC");
echo "<table border='0'>
<tr>
<th>EBay ID</th>
<th>Reason</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['ebayid'] . "</td>";
echo "<td>" . $row['reason'] . "</td>";
echo "</tr>";
}
echo "</table>";
mysql_close($con);
?>
so it fetches great but its one big page as seen here http://testsub.thenorthfaceguru.com/blacklist/
how can I break it into smaller bits or is it even possible to do that in Wordpress?
Thanks