PHP gevorderde |
|
Beste allemaal,
Alvorens een voorspoedig 2006!
Kan iemand mij vertellen waarom de laatste query niet uitgevoert wordt? Terwijl deze wel werkt, ik heb hem getest met een ander script.
<?
mysql_connect("localhost", "", ""); //Connecten met DB
mysql_select_db(""); //naar db connecteren!
?>
<table width="153" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="group.jpg"></td>
</tr>
<tr>
<td background="middle.jpg<?PHP
$sQueryGroepen = "SELECT * FROM Groepen WHERE actief='1' ORDER BY Groep ASC";
if(!$rResultGroepen = MySQL_Query($sQueryGroepen))
{
echo "Error!- ".MySQL_Error();
} else
{
while($aFetchGroepen = MySQL_Fetch_Assoc($rResultGroepen))
{
echo "<a style=\"text-decoration: none\" href='index.php?subgroep=".$aFetchGroepen['id']."'><img width=\"7\" height=\"7\" border=\"0\" src=\"dot.jpg\"> ".$aFetchGroepen['Groep']."</a><br />";
if((IsSet($_GET['subgroep']) && Is_Numeric($_GET['subgroep'])) && ($_GET['subgroep'] == $aFetchGroepen['id']))
{
$sQuerySub = "SELECT * FROM Groepensub WHERE Groep=".$aFetchGroepen['id'];
if(!$rResultSub = MySQL_Query($sQuerySub))
{
echo "Error!- ".MySQL_Error();
} else
{
while($aFetchSub = MySQL_Fetch_Assoc($rResultSub))
{
echo " <a style=\"text-decoration: none\" href='index.php?subgroep=".$aFetchGroepen['id']."&subsubgroep=".$aFetchSub['subgroep_code']."&sgroep=".$aFetchSub['subgroep']."'><img width=\"7\" height=\"7\" border=\"0\" src=\"dot.jpg\"> ".$aFetchSub['subgroep']."</a><BR>";
/* dit */
if(IsSet($_GET['subsubgroep']) == $aFetchSub['id'])
{
// $sQuerySubSub = "SELECT * FROM Groepen-sub-sub WHERE subgroep=".$aFetchSub['id'];
$sQuerySubSub = "SELECT distinct area FROM Reis WHERE country=".$aFetchSub['id']."";
if(!$rResultSubSub = MySQL_Query($sQuerySubSub))
{
echo "Error!- ".MySQL_Error();
} else
{
while($aFetchSubSub = MySQL_Fetch_Assoc($rResultSubSub))
{
echo " <a style=\"text-decoration: none\" href='index.php'><img width=\"7\" height=\"7\" border=\"0\" src=\"dot.jpg\"> ".$aFetchSubSub['area']."</a><BR>";
}
}
}
/* tot dit */
}
}
}
}
}
?>
</td>
</tr>
<tr>
<td><img src="bottom.jpg"></td>
</tr>
</table>
<? ?> <table width="153" border="0" cellspacing="0" cellpadding="0"> <tr> <td><img src="group.jpg"></td> </tr> <tr> <td background="middle.jpg<?PHP $sQueryGroepen = "SELECT * FROM Groepen WHERE actief='1' ORDER BY Groep ASC"; { } else { { echo "<a style=\"text-decoration: none\" href='index.php?subgroep=".$aFetchGroepen['id']."'><img width=\"7\" height=\"7\" border=\"0\" src=\"dot.jpg\"> ".$aFetchGroepen['Groep']."</a><br />"; if((IsSet($_GET['subgroep']) && Is_Numeric($_GET['subgroep'])) && ($_GET['subgroep'] == $aFetchGroepen['id'])) { $sQuerySub = "SELECT * FROM Groepensub WHERE Groep=".$aFetchGroepen['id']; { } else { { echo " <a style=\"text-decoration: none\" href='index.php?subgroep=".$aFetchGroepen['id']."&subsubgroep=".$aFetchSub['subgroep_code']."&sgroep=".$aFetchSub['subgroep']."'><img width=\"7\" height=\"7\" border=\"0\" src=\"dot.jpg\"> ".$aFetchSub['subgroep']."</a><BR>"; /* dit */ if(IsSet($_GET['subsubgroep']) == $aFetchSub['id']) { // $sQuerySubSub = "SELECT * FROM Groepen-sub-sub WHERE subgroep=".$aFetchSub['id']; $sQuerySubSub = "SELECT distinct area FROM Reis WHERE country=".$aFetchSub['id'].""; { } else { { echo " <a style=\"text-decoration: none\" href='index.php'><img width=\"7\" height=\"7\" border=\"0\" src=\"dot.jpg\"> ".$aFetchSubSub['area']."</a><BR>"; } } } /* tot dit */ } } } } } ?> </td> </tr> <tr> <td><img src="bottom.jpg"></td> </tr> </table>
subsubgroep is geen getal!
|