Horje
What is Server-Side Code Example

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.


Example of Server-Side Code Example Code in PHP

Code in PHP

demo_sse.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();
?>

Example of Server-Side Code Example Code in PHP Code in ASP

Code in ASP

demo_sse.asp
Example: ASP
<%
Response.ContentType = "text/event-stream"
Response.Expires = -1
Response.Write("data: The server time is: " & now())
Response.Flush()
%> 

Code explained: Server-Side Code Example

 

Reffered: https://www.w3schools.com/html/html5_serversentevents.asp





Related Articles
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

Single Articles
Example of Server-Side Code Example Code in PHPHTML SSE API
Example of Server-Side Code Example Code in PHP Code in ASPHTML SSE API
Code explained: Server-Side Code ExampleHTML SSE API

Read Full:
HTML SSE API
Category:
Web Tutorial
Sub Category:
HTML SSE API
Uploaded:
1 year ago
Uploaded by:
Admin
Views:
38



Share on: