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

16 lines
259 B
PHP
Raw Normal View History

2022-03-21 11:28:18 +00:00
<h1>Live resultater</h1>
2022-03-23 13:03:33 +00:00
<br>
<table>
<tr>
<th>Some shit</th>
<th>Some shit</th>
</tr>
</table>
2022-03-21 11:28:18 +00:00
2022-03-23 09:08:36 +00:00
<script>
2022-03-27 22:19:01 +00:00
var es = new EventSource('stream.php');
es.onmessage = function(event)
2022-03-23 13:03:33 +00:00
{
2022-03-27 22:19:01 +00:00
console.log("New message", event.data);
};
2022-03-21 11:28:18 +00:00
</script>