<?php
$result = mysql_query("SELECT * FROM category WHERE type='gpu'",$link);
If (mysql_num_rows($result) > 0)
{
$row = mysql_fetch_array($result);
do
{
echo '
<li><a href="view_cat.php?cat='.strtolower($row["brand"]).'&type='.$row["type"].'">'.$row["brand"].'</a></li>
';
}
while ($row = mysql_fetch_array($result));
}
?>