Hi guys
I'm calling categories from my knowledge table
problem is is i only want the category to display once on this page
http://www.notexperienced.co.uk/support.php
as you can see Managing Your CV displays twice
PHP Code:<?
$sql = ("select * from knowledge WHERE type ='Jobseeker' ORDER BY category ASC");
$result = mysql_query ($sql);
while ($row = mysql_fetch_array($result))
{
$title = $row["category"];
echo "<a href=\"viewsupport.php?category=$title&type=Jobseeker\">$title</a><br>";
}
?>
How can i change it so it only displays once









Bookmarks