Moin,
Das ist mein Code. In dem Link ist die Variable 'id' aber nicht mit der eigentlichen id belegt, sondern mit '.id'. Wie kann ich das ändern?
Danke
PHP-Code:
<?
$sql = "SELECT cat.id,cat.name,cont.name,cont.catid,cont.id
FROM cat,cont WHERE cont.catid = cat.id ORDER BY cont.catID";
$ergebnis = mysql_query($sql);
$lastid = -1;
while($row = mysql_fetch_row($ergebnis))
{
if ($lastid != $row[0])
{
echo "<img src=\"images/pfeil2.jpg\">";
echo "$row[1]<br/>\n";
$lastid = $row[0];
}
echo "<a href=\"showcont.php?id=$row->cont.id\">";
echo "<img src=\"images/pfeil.jpg\">";
echo "$row[2]<br/>\n";
echo "</a>";
}
?>
Danke
Kommentar