000
26.02.2004, 16:24 Uhr
~Tiger
Gast
|
Hallo, ich bin noch ein Totaler PHP Anfänger. Nun soll ich zur Übung ein Programm erstellen, womit man die Lottozahlen ziehen kann. Die Zahlen kann ich ziehen, aber die Reihenfolge stimmt noch nicht und es kommen immer wieder doppelte vor. Hier mein bisheriger Quellcode:
PHP 4: |
<html> <head> <title>Aufgabe 2</title> </head> <body> <center><h1>Lottozahlen</h1></center>
<? if ($status!=2) { ?>
<form action="./lottozahlen.php?status=2" method="post">
<table border=0> <tr> <td><b>Lottozahlen ziehen: </b></td> </tr> </table> <table> <tr> <td width=40></td> <td align=center><input type=submit value="Go"></td> </form>
</tr> </table> <? } ?>
<? if ($status==2) { ?> <table border=0> <tr> <td><b><u><h2>Lottozahlen: </h2></u></b></td> </tr> <tr> <td height=20></td> </tr> <tr> <td> <? $i=0; $j=1;
do { $rnd = rand(1,49); ?><tr><td>Nummer <? echo $j;?>:</td><td><?echo $rnd; echo "<br>";?></td></tr><? $i++; $j++; } while ($i<7);
?>
</tr>
</table>
<table border=0> <tr> <td width=50></td> <td width=10></td> <td><a href="./lottozahlen.php?status=1">Zurück</a></td> </tr> </table> <? } ?> </body> </html>
|
Wer kann mir dabei helfen, dass ich die Zahlen in die richtige Reihenfolge bekomme und die doppelten rauskriege. Uber Eure Hilfe wäre ich sehr dankbar.
Tiger |