Auch wenn damit die Frage nach dem Warum nicht beantwortet ist, aber starte mal diesen Versuch:
PHP-Code:
<?php
$sql = "
SELECT
hcid,
COUNT(hcid) AS anzahl_hc
FROM
bild
GROUP BY
hcid";
$res = mysql_query($sql) or die(mysql_error());
$counterg = mysql_fetch_array($count);
$where = ($counterg['anzahl_hc'] > 0) ? "hcid = " . $_GET['hcid'] : "ucid = " . $_GET['ucid'];
$sql = "
SELECT
id,
hcid,
bild
FROM
bild
WHERE
$where";
echo "Abfrage: $sql<br />"; // Für Testzwecke
$ergebnis = mysql_query($sql) or die(mysql_error());
while($row = mysql_fetch_assoc($ergebnis)){
echo "<tr>
<td align="center" class="artaleft"><?php echo $row['bild'] ?></td>
<td align="center" class="artaright">Cat</td>
<td align="center" class="artaright">Edit</td>
</tr>\n";
}
?>
Kommentar