[PHP-users 28263] ページ移動

lens@seaching.hn.org lens @ seaching.hn.org
2006年 1月 28日 (土) 02:33:57 JST


こんにちは、
HTTP_Requestを使用しているのですが、
仮にindex.phpに下記のプログラムを書いた場合
user.phpにページが移動するのではなく
index.php上にuser.phpが表示されますが、
これをuser.phpにページ移動するようにすることはできないでしょうか。

$req =& new HTTP_Request("http://***.***.***.***/test/user.php");
$req->setMethod(HTTP_REQUEST_METHOD_POST);
$req->addPostData("account", "1");
if (!PEAR::isError($req->sendRequest())) {
     $response1 = $req->getResponseBody();
} else {
     $response1 = "ERR";
}
echo $response1;



PHP-users メーリングリストの案内