Is there a way to push data in real time to an external server in CSV format without getting request time out. We are working in custom php.
Cheers,
Hasan
Is there a way to push data in real time to an external server in CSV format without getting request time out. We are working in custom php.
Cheers,
Hasan
Maybe you can use javascript to control websocket, get the additional content, append to the local CSV file.
You can use fputscv
to create an csv file, and curl
to send the data to an external server using HTTP POST. There is a lot of information about the topic around, e.g: