ishilo Posted April 12, 2007 Share Posted April 12, 2007 I have some simple program demo to develop and if I can get help here for that it would be great. I have a little client program on a window PC that connects to a HTTP server. The client program send POST command to the server and a PHP script needs to get the data from the client, process it and then return other data to the client program. I'm quite novice to PHO and still learning the langauge. Any help will be appricicated. Link to comment https://forums.phpfreaks.com/topic/46783-how-do-i-send-binary-data-from-php-to-a-client-program-now-a-web-browser/ Share on other sites More sharing options...
btherl Posted April 13, 2007 Share Posted April 13, 2007 Just printing out the data should be fine, using print or echo. Your client program should parse the HTTP headers as text, then treat the document itself as binary data. Something like: <?php if ($_GET['file'] == 1) { readfile("/path/file1"); } elseif ($_GET['file'] == 2) { readfile("/path/file2"); } ought to work (This is a simple example with no error checking). If you were dealing with a browser, you would have to set appropriate content-type and content-disposition headers, but since it's your own program there's no problem. Link to comment https://forums.phpfreaks.com/topic/46783-how-do-i-send-binary-data-from-php-to-a-client-program-now-a-web-browser/#findComment-228120 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.