2 array's in 1 table
Is het mogelijk om 2 array's in 1 tabel te krijgen?
Voorbeeld
Code (php)
1
2
3
4
5
6
2
3
4
5
6
<table width="100%" border="1">
<tr>
<td> value 1 </td>
<td> value 2 </td>
<tr>
</table>
<tr>
<td> value 1 </td>
<td> value 2 </td>
<tr>
</table>
de value's bevatten dan meerdere waarden, voor iedere waarde moet een nieuwe table row aangemaakt worden.
Iemand die kan helpen?
dit topic?
En draai dit scriptje eens:
Wat is het verschil met En draai dit scriptje eens:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
<?php
$array1 = array('blaat', 'blup', 'moe', 'boe', 'bah');
$array2 = array_reverse($array1); // Ik ben lui.
var_dump($array1, $array2); // Kijk ze zijn omgedraait
echo '<table>';
for($x = 0; $x < count($array1); $x++)
{
echo '<tr><td>' . $x . '</td><td>' . $array1[$x] . '</td><td>' . $array2[$x] . '</td></tr>';
}
echo '</table>';
?>
$array1 = array('blaat', 'blup', 'moe', 'boe', 'bah');
$array2 = array_reverse($array1); // Ik ben lui.
var_dump($array1, $array2); // Kijk ze zijn omgedraait
echo '<table>';
for($x = 0; $x < count($array1); $x++)
{
echo '<tr><td>' . $x . '</td><td>' . $array1[$x] . '</td><td>' . $array2[$x] . '</td></tr>';
}
echo '</table>';
?>
krijg er geen waardes uit
Dat is raar, want ik krijg gewoon:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php // ik houd van kleurtjes :-D
array(5) {
[0]=>
string(5) "blaat"
[1]=>
string(4) "blup"
[2]=>
string(3) "moe"
[3]=>
string(3) "boe"
[4]=>
string(3) "bah"
}
array(5) {
[0]=>
string(3) "bah"
[1]=>
string(3) "boe"
[2]=>
string(3) "moe"
[3]=>
string(4) "blup"
[4]=>
string(5) "blaat"
}
0 blaat bah
1 blup boe
2 moe moe
3 boe blup
4 bah blaat
?>
array(5) {
[0]=>
string(5) "blaat"
[1]=>
string(4) "blup"
[2]=>
string(3) "moe"
[3]=>
string(3) "boe"
[4]=>
string(3) "bah"
}
array(5) {
[0]=>
string(3) "bah"
[1]=>
string(3) "boe"
[2]=>
string(3) "moe"
[3]=>
string(4) "blup"
[4]=>
string(5) "blaat"
}
0 blaat bah
1 blup boe
2 moe moe
3 boe blup
4 bah blaat
?>
Wat ook zou moeten....
Je kunt bovenaan nog even zetten om te kijken of je fouten krijgt, ik krijg ook geen waarschuwingen, fouten of iets anders.
Stefan schreef op 09.05.2009 10:56:
hoe werkt dit dan als ik de array's uit een post haal row1[] en row2[] ?
Oke, dus dit is precies hetzelfde als je vorige topic. Dus:
Dubbelpost, slotje graag!.
Edit: En die code van mij is niet fout, het probleem ligt bij jou...