This is eventually going to become a side menu. But for some reason the results does not get displayed.
<?php
$sql = "SELECT * FROM `category` ORDER BY `category` ASC LIMIT 0, 39";
$poster_results = mysql_query($sql) or die ("Could not do, what you ask of me, sorry man. Check your Code!");
while ($posters_row = mysql_fetch_array($poster_results))
{
extract($posters_row);
echo "$catagory";
}
?>
thanks in advcance