I have a php script running in a web server in order to perform some inserts into a database. This script receives some encrypted data, decrypts it and push it into the db.
The responsible to send this data is a C++ program (Running in Linux), this program will send a message of no more than 40 characters every 5 seconds.
I was thinking on call some bash script that opens the URL (http://myserver.com/myscript.php?message=adfafdadfasfasdfasdf) and receives the message by argument.
I dont want a complex solution, because I just need to open the URL, it is a unidirectional communication channel.
Some simple solution to do this?
Thanks!