vave
Полезный
- Регистрация
- 22 Июн 2007
- Сообщения
- 467
- Реакции
- 16
- Автор темы
- #1
Случилась такая беда, что в скрипте "Autoboss" нужно срочно внести изменения, надо сделать так что бы одна категория не выводилась в результате поиска, вот код где выводится результат, надеюсь тот
Очень надеюсь на Вашу помощь!
PHP:
<div align="center">
<table border="0" width="100%" id="table1" cellspacing="0" cellpadding="0">
<tr>
<tr>
<td height="16" align="left" width="100%"><font size="2" face="Arial"> <?php
if($conf[featured]) $first = "featured DESC,"; else $first = "";
$result = mysql_query("SELECT * FROM $dblist $where ORDER BY $first $_GET[srt] LIMIT $start, $_GET[p]", $link);
if(mysql_num_rows($result)) {
$n = 0;
while($row = mysql_fetch_array($result)) {
// determine which image to display
if($row[images]) {
$image = mysql_query("SELECT fname FROM $dbimgs WHERE listid='$row[id]' ORDER BY id ASC LIMIT 1", $link);
$image = mysql_fetch_array($image);
$image = "thumbs/".$image[fname];
} else {
$image = "common/no-photo-thumb.jpg";
}
// make data display-friendly
$row = safe_data($row, 'display');
if($n % 2) $alternate = "alt"; else $alternate = "";
// create variable string to pass
$show = "show.php?id=$row[id]";
foreach($_GET as $name => $value) if($name != 'id') $show .= "&$name=$value";
echo "<div class='listing $alternate'>";
// featured status
if($row[featured]) echo "<div class='featured'>F E A T U R E D</div>";
// photo
echo "<div class='photo'><a target='_blank' href='$show'><img class='none' src='$image' width='200' alt=''/></a></div>";
// general information
echo "<div class='info'>";
echo "<a target='_blank' href='$show'><strong><font size='3'>";
echo " $row[make]</strong></a></font>";
echo "</div>";
// description summary
echo "<div align='left' class='description'>";
if($row[tagline]) echo "<strong>$row[tagline]</strong>";
elseif($row[description]) echo summary($row[description], 20)." <a target='_blank' href='$show'>More</a>";
echo "<br/>";
echo "</div>";
// compare check box
echo "</div>";
$n++;
}
} else {
echo "<div id='msg-alert'>We're sorry, no listings could be found that match your query.</div>";
}
?></font></td>
</tr>
<tr>
<td width="100%"> </td>
</tr>
<tr>
<td width="100%"><div class='pages'>
<font size="2" face="Arial" color="#333333">Page <?php echo $_GET[page]; ?> of <?php echo $pages; ?> (<?php echo $total; ?>
Listings)
<?php if($pages > 1) { ?>
</font><div class='links'>
<font size="2" face="Arial" color="#333333">
<?php $_GET = safe_data($_GET, 'display'); page_links($_GET, $pages, $_SERVER[PHP_SELF]); ?>
</font>
</div>
<font size="2" face="Arial" color="#333333">
<?php } ?></font></td>
</tr>
</table>
</div>