1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13:
<?php $timestamp_erlaubnis = 1291345200; $timestamp_jetzt = time(); if ($timestamp_jetzt >= $timestamp_erlaubnis) { echo"Zutritt gewährt!"; } else { echo"Zutritt verwehrt!"; } ?>
Impressum