Просмотр поста

.
mi3ry

VARG, я ужЕ ВСЕ ПЕРЕПРОБОВАЛ посмотрите вы плз
<?php
defined('_IN_JOHNCMS') or die('Error: restricted access');

$rz = mysql_query("select * from `gallery` where type='rz';");
$count = mysql_num_rows($rz);
while ($rz1 = mysql_fetch_array($rz)) {
$al = mysql_query("select * from `gallery` where type='al' and refid='" . $rz1['id'] . "';");
$countal = mysql_num_rows($al);
echo '<div class="menu">';
echo '<a href="index.php?id=' . $rz1['id'] . '">' . $rz1['text'] . '</a> (' . $countal . ')</div>';

}

?>