diff options
Diffstat (limited to 'static/blue.php')
-rwxr-xr-x | static/blue.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/static/blue.php b/static/blue.php new file mode 100755 index 0000000..ddffcf6 --- /dev/null +++ b/static/blue.php @@ -0,0 +1,17 @@ +<?php +#==================================================================================================== +# Cache deaktivieren +#==================================================================================================== +header('Cache-Control: no-cache, no-store, must-revalidate'); + +#==================================================================================================== +# Content-Type setzen +#==================================================================================================== +header('Content-Type: text/css'); + +#==================================================================================================== +# Lange Ladezeit simulieren +#==================================================================================================== +usleep(intval(rand(60, 100).'0000')); +?> +#blue{background:blue;}
\ No newline at end of file |