For the example above to work, you need a server capable of sending data updates (like PHP or ASP). The server-side event stream syntax is simple. Set the "Content-Type" header to "text/event-stream". Now you can start sending event streams. |
Code in PHP
Example:
PHP
<?php
header('Content-Type: text/event-stream');
header('Cache-Control: no-cache');
$time = date('r');
echo "data: The server time is: {$time}\n\n";
flush();
?>
Code in ASP
Example:
ASP
<%
Response.ContentType = "text/event-stream"
Response.Expires = -1
Response.Write("data: The server time is: " & now())
Response.Flush()
%>
Reffered: https://www.w3schools.com/html/html5_serversentevents.asp
What is HTML SSE API | HTML SSE API |
How to add Server-Sent Events - One Way Messaging | HTML SSE API |
What types of browsers will support HTML SSE API | HTML SSE API |
How to Receive Server-Sent Event Notifications | HTML SSE API |
How to Check Server-Sent Events Support | HTML SSE API |
What is Server-Side Code Example | HTML SSE API |
What are The EventSource Object | HTML SSE API |
Example of Server-Side Code Example Code in PHP | HTML SSE API |
Example of Server-Side Code Example Code in PHP Code in ASP | HTML SSE API |
Code explained: Server-Side Code Example | HTML SSE API |
Read Full: | HTML SSE API |
Category: | Web Tutorial |
Sub Category: | HTML SSE API |
Uploaded: | 1 year ago |
Uploaded by: | Admin |
Views: | 38 |