Re: [PHP] How to pass data without headers

2002-10-28 Thread Drew Kime
Chris Shiflett wrote: You can use the explode() function to separate the content part of the response, which is what you're interested in. Here's a similar example that only returns the content: http://shiflett.org/tutorials/php_post.txt Thanks, that's nearly what I need. But it seems there a

Re: [PHP] How to pass data without headers

2002-10-28 Thread Chris Shiflett
You can use the explode() function to separate the content part of the response, which is what you're interested in. Here's a similar example that only returns the content: http://shiflett.org/tutorials/php_post.txt Drew Kime wrote: I've used the example function in the 08 Jul 200 user note at

[PHP] How to pass data without headers

2002-10-28 Thread Drew Kime
I've used the example function in the 08 Jul 200 user note at http://www.php.net/manual/en/ref.sockets.php and have a problem with the headers. The '$buf' value includes the headers sent by 'search.php'. When I echo it, the server first sends the headers, then it echos the contents of '$buf' w