<?php
    include "counter.php";
    $counter += 1;
    $var = "<?php\n\t\$counter = $counter;\n?>";
    file_put_contents('counter.php', $var);
	
	// Textfile schreiben damit Adress den Counterstand einlesen kann
	$myfile = fopen("counterstand.txt", "w");
	fwrite($myfile, $counter);
	fclose($myfile);
?> 
