Search Results

0
votes
3answers
313 views

PHP webserver connect to C# program on same server — What am I looking for?

So I have a webserver in which user can remotely control an external electronic board which due to certain conditions force me to put a desktop program using C# as the middle-man. What is t …
0
votes
3answers
476 views

PHP: socket listen problem

Here is my code: <?php $host = "127.0.0.1"; $portListen = 1234; $portSend = 1240; // create socket $sSender = socket_create(AF_INET, SOCK_STREAM, 0); socket_connect($sSender, …
0
votes

PHP: socket listen problem

I see, after having a few hours sleep and re-analyzing my code and the documentations, I managed to fix everything. You guys are right, 1 socket is indeed enough and the correct way: …