PHP expert |
|
<body>
<font face="Verdana, Arial, Helvetica, sans-serif" size="2">
<?php
$cats = mysql_query("SELECT * FROM team_cat") or die(mysql_error());
?>
<b> SV Diksmuide Jeugd » </b>
<ul>
<?php
while($cat_D = mysql_fetch_assoc($cats))
{
?>
<li><?= $cat_D["cat_name"]; ?></li>
<?php
}
?>
</ul>
<br>
<b> De slaapkouzen » </b>
<ul>
<?php
while($cat_S = mysql_fetch_assoc($cats))
{
?>
<li><?= $cat_S["cat_name"]; ?></li>
<?php
}
?>
</ul>
</font>
</body>
<body> <font face="Verdana, Arial, Helvetica, sans-serif" size="2"> <?php ?> <b> SV Diksmuide Jeugd » </b> <ul> <?php { ?> <li><?= $cat_D["cat_name"]; ?></li> <?php } ?> </ul> <br> <b> De slaapkouzen » </b> <ul> <?php { ?> <li><?= $cat_S["cat_name"]; ?></li> <?php } ?> </ul> </font> </body>
ik heb een nogal rare fout, de 2e while loop werkt nie, nochtans wordt er gebruik gemaakt van dezelfde query
Iemand een oplossing, want het zou stom zijn moest ik 2 query's laten draaien
|