i am trying to create server side page in php on which i have to get response from some website through http request. i recieved the error HttpRequest not found. trying to fix this error i was able to find the php_http.dll file for http requests.. i have added it in php extention folder /ext and now i can see the it in the extention list too. but the problem is i am still having the same error... now what i understand is that may be php_http file version is older.. i have php 5.4.16 32bit and the maximum version dll file i can find is 5.3 where do i find compatable verson. or do tell me if i am doing something wrong already....
$r = new HttpRequest('http://example.com/feed.rss', HttpRequest::METH_POST);
this is the line of code i am strugling to remove error from