aboutsummaryrefslogtreecommitdiffstats
path: root/static/green.php
blob: 65ded6fb69d0560f5f4d013e2d85fb6ee65bf07d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
#====================================================================================================
# Disable cache
#====================================================================================================
header('Cache-Control: no-cache, no-store, must-revalidate');

#====================================================================================================
# Set Content-Type
#====================================================================================================
header('Content-Type: text/css');

#====================================================================================================
# Simulate long loading time
#====================================================================================================
usleep(intval(rand(60, 100).'0000'));
?>
#green{background:green;}