beste spelers (score)
Paul K
22/10/2006 18:11:00Ik heb het volgende script:
Nu geeft ie dit:
Naam: Score:
testcount 99999999
Fireworks 534
testtt 3666
ieao 0
Dit klopt niet --.--
Ik snap wel waarom hij et zo doet,,, maar hoe moet ik zorgen dat het wel werkt zoals ik het wil?
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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<table width="95%">
<tr>
<td align="center" class="tekst" background="../../images/kopbar.gif" width="100%">
Beste spelers:<br>
</td>
</tr>
</table>
<table width="95%">
<tr>
<td align="left" bgcolor="#054F99" class="tekst" width="50%"><b>Naam:</b></td>
<td align="left" bgcolor="#054F99" class="tekst" width="50%"><b>Score:</b></td>
</tr>
<tr>
<?
$result = mysql_query("SELECT * FROM leden ORDER BY score DESC LIMIT 10");
while ($row=mysql_fetch_assoc($result))
{
?><td align="left" bgcolor="#054F99" class="tekst" width="50%"><? echo $row['naam']; ?></td>
<td align="left" bgcolor="#054F99" class="tekst" width="50%"><? echo $row['score'].'<br />';?></td></tr><tr><?
}
?>
</tr>
</table>
<tr>
<td align="center" class="tekst" background="../../images/kopbar.gif" width="100%">
Beste spelers:<br>
</td>
</tr>
</table>
<table width="95%">
<tr>
<td align="left" bgcolor="#054F99" class="tekst" width="50%"><b>Naam:</b></td>
<td align="left" bgcolor="#054F99" class="tekst" width="50%"><b>Score:</b></td>
</tr>
<tr>
<?
$result = mysql_query("SELECT * FROM leden ORDER BY score DESC LIMIT 10");
while ($row=mysql_fetch_assoc($result))
{
?><td align="left" bgcolor="#054F99" class="tekst" width="50%"><? echo $row['naam']; ?></td>
<td align="left" bgcolor="#054F99" class="tekst" width="50%"><? echo $row['score'].'<br />';?></td></tr><tr><?
}
?>
</tr>
</table>
Nu geeft ie dit:
Naam: Score:
testcount 99999999
Fireworks 534
testtt 3666
ieao 0
Dit klopt niet --.--
Ik snap wel waarom hij et zo doet,,, maar hoe moet ik zorgen dat het wel werkt zoals ik het wil?
Gewijzigd op 01/01/1970 01:00:00 door Paul K
PHP hulp
18/11/2024 16:37:40Romano
22/10/2006 18:18:00Paul K
22/10/2006 18:20:00Dat ie het in volgorde van hoge score naar lage score zet:
Het staat zo nu:
Naam: Score:
testcount 99999999
Fireworks 534
testtt 3666
ieao 0
maar het hoort natuurlijk zo:
Naam: Score:
testcount 99999999
testtt 3666
Fireworks 534
ieao 0
Het staat zo nu:
Naam: Score:
testcount 99999999
Fireworks 534
testtt 3666
ieao 0
maar het hoort natuurlijk zo:
Naam: Score:
testcount 99999999
testtt 3666
Fireworks 534
ieao 0