first working version of streaming for windows iframe based
[xynt.git] / web / winstream_rd.php
diff --git a/web/winstream_rd.php b/web/winstream_rd.php
new file mode 100644 (file)
index 0000000..955269a
--- /dev/null
@@ -0,0 +1,36 @@
+<html>
+<head>
+<script type="text/javascript" src="xynt/xynt-console.js"></script>
+</head>
+<body>
+</body>
+<?php
+function mop_flush()
+{
+    ob_flush();
+    flush();
+}
+
+function main()
+{
+    $s = "";
+    for ($i = 0 ; $i < 4096 ; $i++) {
+        $s .= rand(0,255);
+    }
+    for ($i = 0 ; $i < 20 ; $i++) {
+        
+        /*                    parent.document.getElementById('cont').innerHTML = \"%d\";
+                             parent.allmythings =  \"%d\"; */
+        printf("<script type=\"text/javascript\">
+                    parent.allmythings = %d;
+                    console.log(\"zorro \"+parent.allmythings);
+
+                </script>", $i);
+        if ($i == 0)
+            printf("%s", $s);
+        mop_flush();
+        sleep(1);
+    }
+}
+main();
+?>
\ No newline at end of file