aboutsummaryrefslogtreecommitdiffstats
path: root/test/data/css.php
blob: 9d079e73f8eb11b79c90d8b262fe6bc2dd67a31c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
error_reporting(0);
$id = isset ( $_REQUEST['id'] ) ? $_REQUEST['id'] : null;
$wait = isset( $_REQUEST['wait'] ) ? $_REQUEST['wait'] : null;

if ( $wait ) sleep( $wait );

header("Content-type: text/css");

if ( $id ) {
	?>
	div#<?= $id ?> { margin-left: 27px }
	<?php
}
?>