1 tabel 2 while loops
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
<?php
<tr>
<td>
[code]<?php while($rij = mysql_fetch_assoc($resultaat_ospelers_uit )) { ?>
<tr><td><?php echo $rij['Ospeler_achternaam']; ?></td></tr>
<?php } ?>
<?php while($rij = mysql_fetch_assoc($resultaat_ospelers_in)) { ?>
<td><?php echo $rij['Ospeler_achternaam']; ?></td>
<?php } ?>
</td>
</tr>
?>
<tr>
<td>
[code]<?php while($rij = mysql_fetch_assoc($resultaat_ospelers_uit )) { ?>
<tr><td><?php echo $rij['Ospeler_achternaam']; ?></td></tr>
<?php } ?>
<?php while($rij = mysql_fetch_assoc($resultaat_ospelers_in)) { ?>
<td><?php echo $rij['Ospeler_achternaam']; ?></td>
<?php } ?>
</td>
</tr>
?>
Nu is het resultaat zo:
Naam1($resultaat_ospelers_uit)
Naam2($resultaat_ospelers_uit)
Naam3($resultaat_ospelers_uit)
Naam1($resultaat_ospelers_in)Naam2($resultaat_ospelers_in)Naam3($resultaat_ospelers_in)
Maar het moet natuurlijk zo zijn:
Naam1($resultaat_ospelers_uit)Naam1($resultaat_ospelers_in)
Naam2($resultaat_ospelers_uit)Naam2($resultaat_ospelers_in)
Naam3($resultaat_ospelers_uit)Naam3($resultaat_ospelers_in)
Ik heb alles zitten uitproberen maar ik weet echt gewoon niet hoe ik dit kan oplossen. Hebben jullie enig idee.
Alvast bedankt!
Gewijzigd op 01/01/1970 01:00:00 door Marcel
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
<?php
<tr>
<td>
[code]<?php while($rij = mysql_fetch_assoc($resultaat_ospelers_uit )) { ?>
<tr><td><?php echo $rij['Ospeler_achternaam']; ?></td></tr>
<?php while($rij = mysql_fetch_assoc($resultaat_ospelers_in)) { ?>
<td><?php echo $rij['Ospeler_achternaam']; ?></td>
<?php } ?>
<?php } ?>
</td>
</tr>
?>
<tr>
<td>
[code]<?php while($rij = mysql_fetch_assoc($resultaat_ospelers_uit )) { ?>
<tr><td><?php echo $rij['Ospeler_achternaam']; ?></td></tr>
<?php while($rij = mysql_fetch_assoc($resultaat_ospelers_in)) { ?>
<td><?php echo $rij['Ospeler_achternaam']; ?></td>
<?php } ?>
<?php } ?>
</td>
</tr>
?>
als het goed begrijp wil je while in while niet?
als dat zo is dan is wat hieboven staat.
Gewijzigd op 01/01/1970 01:00:00 door bart van der veen
Ik wil gewoon dat wat in mijn voorbeeld uiteindelijk dit resultaat opleverd:
Naam1($resultaat_ospelers_uit)Naam1($resultaat_ospelers_in)
Naam2($resultaat_ospelers_uit)Naam2($resultaat_ospelers_in)
Naam3($resultaat_ospelers_uit)Naam3($resultaat_ospelers_in)
I.p.v
Naam1($resultaat_ospelers_uit)
Naam2($resultaat_ospelers_uit)
Naam3($resultaat_ospelers_uit)
Naam1($resultaat_ospelers_in)Naam2($resultaat_ospelers_in)Naam3($resultaat_ospelers_in)
Zolang je in je while loops gaat echoën lukt het niet. Als je in allebei je while loops een array zou vullen met de resultaten kun je daarna een for loop maken waarin je het n-de element van beide arrays echoot.
Kun je hier een voorbeeld van geven, want ik snap wel een beetje wat je bedoelt... maar het zal voor mijn handig zijn als ik een voorbeeld heb.