Lid |
|
Hey ik ben een dc aan et maken die is om gebouwd uit een screenshot systeem.
Nu heb ik een probleem waar ik helemaal gek van wordt
Je heb dus een hoofdcatogorie, en als je daar op klikt krijg je de subcatogorieen.
Nu is het de bedoeling dat als je op een subcatogorie klikt dat je dan de files ziet die daar in horen.
Maar als ik er op klik kom ik weer bij de hoofdcatogorieen .
Hier is de code:
<? include("config.php"); ?>
<?
if (!$show) {
print "
<br><table width=100% border=0 align=center cellpadding=1 cellspacing=1>
";
$tsel = mysql_query("select * from catogorie order by naam ASC");
while ($cats = mysql_fetch_array($tsel)) {
print " <tr>
<td bgcolor=#5F739D><a href=index2.php?feu=downloads&id=$cats[id]&show=yes>$cats[naam]</a></td>";
}
print "</table><br>";
}
if ($show == yes) {
if (!$show2) {
print "
<br><table width=100% border=0 align=center cellpadding=1 cellspacing=1>";
$tsel = mysql_query("select * from subcatogorie WHERE downloadid='$id' order by naam ASC");
while ($cats = mysql_fetch_array($tsel)) {
print " <tr>
<td><a href=index2.php?feu=downloads&id=$cats[id]&show2=yes>$cats[naam]</a></td>";
}
print "</table><br>";
}
if ($show2 == yes) {
$tsel2 = mysql_query("select * from files where fileid=$downloadid");
while ($cats = mysql_fetch_array($tsel2)) {
print "<br><br>";
$s_screenshots = explode(",", $cats["screenshots"]);
foreach($s_screenshots as $screenshot) {
$screenshots .= "<center><a href=".$screenshot." target=_BLANK>".$naam."</a></center><br>";
}
print "$screenshots";
}
}
}
<? include("config.php"); ?> <? if (!$show) { <br><table width=100% border=0 align=center cellpadding=1 cellspacing=1> "; $tsel = mysql_query("select * from catogorie order by naam ASC"); <td bgcolor=#5F739D><a href=index2.php?feu=downloads&id=$cats[id]&show=yes>$cats[naam]</a></td>"; } } if ($show == yes) { if (!$show2) { <br><table width=100% border=0 align=center cellpadding=1 cellspacing=1>"; $tsel = mysql_query("select * from subcatogorie WHERE downloadid='$id' order by naam ASC"); <td><a href=index2.php?feu=downloads&id=$cats[id]&show2=yes>$cats[naam]</a></td>"; } } if ($show2 == yes) { $tsel2 = mysql_query("select * from files where fileid=$downloadid"); $s_screenshots = explode(",", $cats["screenshots"]); foreach($s_screenshots as $screenshot) { $screenshots .= "<center><a href=".$screenshot." target=_BLANK>".$naam."</a></center><br>"; } } } }
Ik hoop dat jullie me kunnen helpen, alvast bedankt.:cool:
|