Hi there,
I am trying to send a request that is normally sent by filling in a form (no method specified) from within a script, but only get part of the response, none of the dynamic response
here is the code
require_once('HTTP/Request.php');
$http = new HTTP_Request("http://www.mydomain.com/my.html");
$http->setMethod(HTTP_REQUEST_METHOD_GET);
$http->setBasicAuth('user', 'pass');
$http->addQueryString('em','test');
$http->addQueryString('pas','test');
$http->sendRequest();
echo $http->getResponseBody();
Any ideas what goes wrong - I only get the static part of the html reposne page, but not whether anything was processed