';
//GET THE SHIT!
$sql = "SELECT * FROM `".DBTBNM."` WHERE `plid` = ".PK." ORDER BY `link_title`";
$result = mysql_query($sql) or die("Invalid query (linker): " . mysql_error());
while ($row = mysql_fetch_array($result)) {
$path = $base_path;
$path_elements = explode('/',$row['link_path']);
if($path_elements[0] == 'http:'){$path = '';}
$html_out .= '
'.ucwords($row['link_title']).'';
}
// PUT IT TO THE SCREEN!
echo $html_out.'';
?>