aboutsummaryrefslogtreecommitdiff
path: root/lines-to-stdout.php
diff options
context:
space:
mode:
Diffstat (limited to 'lines-to-stdout.php')
-rw-r--r--lines-to-stdout.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/lines-to-stdout.php b/lines-to-stdout.php
new file mode 100644
index 0000000..eb6b39d
--- /dev/null
+++ b/lines-to-stdout.php
@@ -0,0 +1,9 @@
+<?php
+
+$n = 0;
+while ($n < 4) {
+ echo $n++ . ';col2;col3;col4' . "\n";
+ sleep(1);
+}
+
+?> \ No newline at end of file