<?php
// poor man's animation
include 'HV_HttpMultipart.php';
$serverpush = new HV_HttpMultipart();
$data = array();
$data[] = file_get_contents('page_1.html');
$data[] = file_get_contents('page_2.html');
$data[] = file_get_contents('page_3.html');
$data[] = file_get_contents('page_4.html');
$data[] = file_get_contents('page_5.html');
$data[] = file_get_contents('page_6.html');
$data[] = file_get_contents('page_7.html');
$data[] = file_get_contents('page_ok.html');
$serverpush->iterate($data, 1);
?>
|