![]() |
|
|
+ Search |
![]()
|
Sep 21st, 2006 09:05
Prasanna Manian, Scott Reston,
hi,
This is my way of cutting the headers & it's working...
function cutHeaders($str) {
$strResponse = explode("\r\n\r\n",$str);
return $strResponse[1];
}
$onlyResponse = cutHeaders($fullResponse);