is it the same if I make Zend_Http_Client request and load the response from it to an iframe and if I do it from a form setting the iframe as a target? I set the iframe src to my controller/action and in it I have Zend_Http_Client
$response = $client->request(Zend_Http_Client::POST); echo $response->getBody();
does it has difference if I do it with a form, setting up the target iframe.
i want to have this already loaded when I start the page not when I press the button submit.