This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/app/view/pages/race/live-results.php
2022-03-27 22:19:01 +00:00

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>