Rewrite of the Ajax module by Julian Aubourg. Some (dated) details can be found here...
[jquery.git] / test / data / css.php
diff --git a/test/data/css.php b/test/data/css.php
new file mode 100644 (file)
index 0000000..9d079e7
--- /dev/null
@@ -0,0 +1,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
+}
+?>
\ No newline at end of file