Ungetestet:
PHP:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Lottoziehung</title>
</head>
<body>
<h1>Lottozahlen</h1>
<?php
// Array erstellen
$Lottozahlen = array();
// Schleife
for($i=0; $i<7; $i++)
{
// Eine Zahl zwischen 1 und 49
$Ziehung = mt_rand(1,49);
// Prüfen ob Zahl bereits vorhanden
if (in_array($Ziehung, $Lottozahlen))
{
$i--;
continue;
}
// In Array laden
$Lottozahlen[] = $Ziehung;
}
// Mit Komma trennen
$Lottozahlen = implode(',', $Lottozahlen);
//
echo "Die Lottozahlen dieser Wochen lauten: ".$Lottozahlen;
?>
</body>
</html>