08/09/04 17:02:18 3IjpaimK
なんでinfoseekはログインできないの??
<?php
require_once "HTTP/Client.php";
$URL = "URLリンク(register.www.infoseek.co.jp)";
$LOGIN_ID = 'xxxx';
$LOGIN_PW = 'xxxx';
$http = new HTTP_Client();
$params = array(
'username' => $LOGIN_ID,
'password' => $LOGIN_PW,
'plogin' => 'on',
'saveId' => 'on',
);
$ret = $http->post($URL, $params);
$response = $http->currentResponse();
print_r($response['body']);
?>
ログインできてないHTMLが帰ってくるんだけど、どうしてですかね?