Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<?php
$schritt = 10000;
$handle = fopen("login.txt", "a");
$buchstaben = array(A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z);
if ($count <= "500000") {
$data = array();
$i = 0;
srand ((double)microtime()*1000000);
for($i=1; $i<=$schritt; $i++)
{
$rand = rand(0,25);
$rand1 = rand(0,25);
$rand2 = rand(0,9);
$rand3 = rand(0,9);
$rand4 = rand(0,9);
$rand5 = rand(0,25);
$rand6 = rand(0,9);
$rand7 = rand(0,9);
$rand8 = rand(0,9);
$string = "$buchstaben[$rand]$buchstaben[$rand1]$rand2$rand3$rand4$buchstaben[$rand5]$rand6$rand7$rand8";
if (! in_array($string, $data)) {
//$data[] = $string;
fwrite ($handle, $string."\n");
}
}
fclose($handle);
$count = $count + $schritt;
header("location: index.php?count=".$count); exit();
//echo "<a href=index.php?count=$count>weiter</a>";
} else {
echo "fertig"; }
?>