2016. július 28., csütörtök

Írjunk lottószámokat generáló és megjelenítő alkalmazást php segítségével.

<html>
<head>
<title>Lottó</title>
</head>
<body>
<form name="fvissza" action="" method="POST">
<input type="submit" name="vissza" value="Vissza" />
</form>
<center>
<form name="lotto" action="" method="POST">
<h1><u>Lottó</u> &nbsp;
<input type="submit" name="ujra" value="Újra" />
</form>
</h1>
<?php
function kepre($tomb){
            print "<table border=\"2\" bordercolor=\"black\" cellpadding=\"5\" cellspacing=\"0\" >\n";
            for ($i=0; $i<6; $i++){
                  print "<tr>\n";
                  for ($j=0; $j<15; $j++){
                        if ( $tomb[15*$i+$j+1] == 0){
                              print "<td align=\"center\" bgcolor=\"#eeeeee\">";
                        }
                        else{
                              print "<td align=\"center\" bgcolor=\"yellow\">";
                        }
                        print "<font size=\"6\">";
                        print 15*$i+$j+1;
                        print "</font>";
                        print "</td>\n";
                  }
                  print "</tr>\n";
            }
            print "</table>\n";
            return true;
}
$tomb = array();
//tömbfeltöltés
for ($i=1; $i<=90; $i++){
            $tomb[$i] = 0;
}
//lottóhúzás
for ($i=1; $i<=5; $i++){
            do{
                  $v = rand(1,90);
            }while ( $tomb[$v] == 1 );
            $tomb[$v] = 1;
}
kepre($tomb);
if ( isset($_POST['vissza']) ){
            header("location: Lotto.htm");
}
?>
</center>
</body>
</html>

Nincsenek megjegyzések:

Megjegyzés küldése