
Directory » Software & Scripts
| NAME/LINK |
DESCRIPTION |
';
echo ''.$dn.'';
echo ' | ';
echo $descr.' | ';
echo ' | |
';
}
}
$gets = @mysql_query("select * from kil_directory_item where dir_id = '6' order by itemname asc");
$numnum = @mysql_num_rows($gets);
if($numnum > 0){
echo '
| ITEMS: |
|
';
}
while($rw = @mysql_fetch_array($gets)){
$id = $rw['id'];
$iname = $rw['itemname'];
$iname = stripslashes($iname);
$ilink = $rw['itemlink'];
$descr = $rw['itemdescr'];
$descr = stripslashes($descr);
$thumb = $rw['thumb'];
$nof = $rw['nofollow'];
$pop = $rw['popup'];
if($nof == 1){
$ilink = 'out.php?dir='.$id;
}
echo '';
echo '';
if($thumb != ''){
echo ' ';
}else{
echo ''.$iname.'';
}
echo ' | ';
if($descr != ''){ echo '"'; }
echo $descr;
if($descr != ''){ echo '"'; }
echo ' |
';
echo ' | |
';
}
?>