diff options
author | Thomas Lange <code@nerdmind.de> | 2015-04-15 21:29:19 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2015-04-15 21:29:19 +0200 |
commit | bf996f7247133c536511c23b6ad30aa222bfd6d9 (patch) | |
tree | 1d9388e6331454fbc9b68b5006a64c4563c202cd /static/red.php | |
download | bigpipe-bf996f7247133c536511c23b6ad30aa222bfd6d9.tar.gz bigpipe-bf996f7247133c536511c23b6ad30aa222bfd6d9.tar.xz bigpipe-bf996f7247133c536511c23b6ad30aa222bfd6d9.zip |
Initial commit
Diffstat (limited to 'static/red.php')
-rwxr-xr-x | static/red.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/static/red.php b/static/red.php new file mode 100755 index 0000000..9ad993e --- /dev/null +++ b/static/red.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')); +?> +#red{background:red;}
\ No newline at end of file |