4 function sendPart($data)
8 echo("Content-Type: image/png\r\n\r\n");
10 echo("--$boundary\r\n");
15 while ($img = $_GET['img' . $i]) {
16 $images[$i] = file_get_contents($img);
20 if (isset($_GET['interval']))
21 $interval = $_GET['interval'] * 1000000;
25 header("Content-Type: multipart/x-mixed-replace; boundary=$boundary");
27 echo("--$boundary\r\n");
31 for ($k = 1; $k < $i; $k++
) {
32 sendPart($images[$k]);
35 } while ($_GET['loop']);
37 if (isset($_GET['wait']))
38 usleep($_GET['wait'] * 1000000);