16 lines
		
	
	
		
			259 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			259 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <h1>Live resultater</h1>
 | |
| <br>
 | |
| <table>
 | |
|     <tr>
 | |
|         <th>Some shit</th>
 | |
|         <th>Some shit</th>
 | |
|     </tr>
 | |
| </table>
 | |
| 
 | |
| <script>
 | |
| var es = new EventSource('stream.php');
 | |
| es.onmessage = function(event)
 | |
| {
 | |
|     console.log("New message", event.data);
 | |
| };
 | |
| </script> |