Splitsen van resultaat query in 2 kolommen
Ik ben nu al een tijdje aan het zoeken en proberen, maar ik kom er maar niet uit.
Ik heb resultaten van een sql-query die ik in tabelvorm wil laten zien op mijn site.
Het lukt me om middels PHP de gehele lijst (stand competitie) onder elkaar te laten zien.
Het probleem is alleen dat de ruimte die ik hiervoor gereserveerd heb op mijn site niet geschikt is om de resultaten allemaal onder elkaar te zetten. Daarom wil ik de tabel splitsen in 2 kolommen naast elkaar, zodat er een linker- en rechterrijtje ontstaat.
Er spelen 18 clubs in de competitie dus de eerse 9 clubs links en de laatste 9 clubs rechts.
Hoe krijg ik dat voor elkaar? Wat moet ik toevoegen aan mijn code om dit voor elkaar te krijgen?
Mijn code so far:
Boven de Head
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 require_once('Connections/hallo.php'); ?>
<?php
bla, bla, bla
mysql_select_db($database_hallo, $hallo);
$query_Recordset1 = "SELECT tbl_clubs.clubID from etc, etc" // = de sql-query //
$Recordset1 = mysql_query($query_Recordset1, $hallo) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
<?php
bla, bla, bla
mysql_select_db($database_hallo, $hallo);
$query_Recordset1 = "SELECT tbl_clubs.clubID from etc, etc" // = de sql-query //
$Recordset1 = mysql_query($query_Recordset1, $hallo) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
In de body:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div id="stand">
<table border="0" cellpadding="1" cellspacing="1">
<?php do { ?>
<tr>
<td width="90" height="1">
<?php echo $row_Recordset1['clubnaam']; ?></td>
<td width="20" height="1" style="text-align: right; font-size: 11px;">
<?php echo $row_Recordset1['gespeeld']; ?></td>
<td width="20" height="1" style="text-align: right">
<?php echo $row_Recordset1['punt_totaal']; ?></td>
<td width="20" height="1" style="text-align: right; font-size: 11px;">
<?php echo $row_Recordset1['doelsaldo']; ?></td>
</tr>
<?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
</table>
</div>
<table border="0" cellpadding="1" cellspacing="1">
<?php do { ?>
<tr>
<td width="90" height="1">
<?php echo $row_Recordset1['clubnaam']; ?></td>
<td width="20" height="1" style="text-align: right; font-size: 11px;">
<?php echo $row_Recordset1['gespeeld']; ?></td>
<td width="20" height="1" style="text-align: right">
<?php echo $row_Recordset1['punt_totaal']; ?></td>
<td width="20" height="1" style="text-align: right; font-size: 11px;">
<?php echo $row_Recordset1['doelsaldo']; ?></td>
</tr>
<?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
</table>
</div>
Gewijzigd op 27/08/2013 15:20:16 door Jo Immanuel
Er zijn nog geen reacties op dit bericht.