POST to PHP with server sent events? POST to PHP with server sent events? ajax ajax

POST to PHP with server sent events?


No, SSE cannot send any data to the server.

You can still use SSE to read data in real time and use AJAX to upload any data (you might need a shared database to pass information between AJAX-receiving processes and SSE-sending one).


You can send data via GET.

e.g.

name=john&name=lea

This is a simple script that sends to server number of iteration and the server return progress using SSE.

This Project consists of two files (index.php and ssedemo.php).

index.php contain a text box and a button. the textbox suppose to contain the number of iteration of the loop in ssedemo.php

    <h2>Server Sent Event Test</h2>    <form>        <label>Process Duration</label>        <input type="text" id="progVal">        <input type="button" value="Get Messages" onclick="updateProgress()"/>    </form>    <div id="container">    </div>

updateProgress

    function updateProgress() {        var input = $('#progVal').val();        var evtSource = new EventSource("ssedemo.php?duration=" + encodeURIComponent(input));        evtSource.addEventListener("progress", function (e) {            var obj = JSON.parse(e.data);            $('#container').html(obj.progress);            if(  parseInt(obj.progress) == 100){                evtSource.close();            }        }, false);    }

this function get the content of the textbox using jQuery and then create an eventSource. The EventSource() constructor takes one or two arguments. The first specifies the URL to which to connect. The second specifies the settings, if any, in the form of an EventSourceInit dictionary.

You can pass what you want by adding it to URL as you do with GET.

"ssedemo.php?duration=" + encodeURIComponent(input)

In the server side, you have to set header type and disable cache according to W3C recommendation

header("Content-Type: text/event-stream");header("Cache-Control: no-cache");

then you get the data using $_GET as usual.

$TotalNo = $_GET['duration'];for ($i = 1; $i <= $TotalNo; $i++) {    updateProgress($i, $TotalNo);    sleep(1);}function updateProgress($currentVal, $totalNo) {    $completionPrecentage = $currentVal / $totalNo * 100;    echo "event: progress\n";    echo 'data: {"progress": "' . $completionPrecentage . '"}';    echo "\n\n";    ob_flush();    flush();}

if you want to send array you can refer to this


The EventSource API does not support POST method, however that does not mean that you cannot use SSE with POST. You just cannot use the EventSource API.There are alternative implementations however. One example is sse.js which allows you to specify a payload, and also headers if you need. sse.js should be a drop-in replacement for EventSource, eg:

var source = new SSE("get_message.php");source.onmessage=function(event){    document.getElementById("message-window").innerHTML+=event.data + "<br>";};

In order to use a POST method, you just need to specify a payload, eg:

var source = new SSE("get_message.php", {payload: 'Hello World'});

And, since it is a fully compatible polyfill, you can probably do this:

EventSource = SSE;var source = new EventSource("get_message.php", {payload: 'Hello World'});source.onmessage=function(event){    document.getElementById("message-window").innerHTML+=event.data + "<br>";};