<?
    header
("Content-Type: application/x-dom-event-stream");

    if (
ob_get_level() == 0ob_start();
    
mt_srand();
    for( 
$i 0$i 10$i++ ) {
        echo 
"Event: content\n";
        
$content substrmd5mt_rand(0,10) ), 010 );
        echo 
"data: loop $i: $content\n";
        echo 
"\n";
        
ob_flush();
        
flush();
        
sleep(3);
    }
    
ob_end_flush();
    
?>