The following businesses offer products and/or services which may be of interest to our clients:
$sql="select * from Links where OKToPublish <> 0 and upper(PageName) = 'GENERAL' order by Category,LinkName";
$result=mysql_query($sql);
while ($row = mysql_fetch_assoc($result)) {
if($lastcategory != $row["Category"])
echo "".$row["Category"]."
| ";
$lastcategory=$row["Category"];
// if(strpos($row["URL"],"http://"))
$URL=$row["URL"];
// else
// $URL="http://".$row["URL"];
echo " | ".$row["LinkName"]." - ".substr($row["URL"],7,strlen($row["URL"]))." - ".$row["Description"]."
| ";
}
?>
|