>Проблема такая: я ограничиваю доступ к файлам через htaccess/htpasswd но при попытке
>доступа к файлам выскакивает окно с предложением ввести логин и пароль.
>Как залогинеться через форму чтобы потом не выскакивало это окно?????
>
function http($url, $method="GET", $headers="", $post=array(""))
{
$URL = parse_url($url);
if (isset($URL['query']))
{
$URL['query'] = "?".$URL['query'];
} else
{
$URL['query'] = "";
}
if (!isset($URL['port'])) $URL['port'] = 80;
$request = $method." ".$URL['path'].$URL['query']." HTTP/1.0\r\n";
$request .= "Host: ".$URL['host']."\r\n";
$request .= "User-Agent: PHP/".phpversion()."\r\n";
if (isset($URL['user']) && isset($URL['pass']))
{
$request .="Authorization: Basic ".base64_encode($URL['user'].":".$URL['pass'])."\r\n";
}
$request .= $headers;
if (strtoupper($method) == "POST")
{
while (list($name, $value) = each($post))
{
$POST[] = $name."=".urlencode($value);
}
$postdata = implode("&", $POST);
$request .= "Content-Type: application/x-www-form-urlencoded\r\n";
$request .= "Content-Length: ".strlen($postdata)."\r\n";
$request .= "\r\n";
$request .= $postdata;
} else
{
$request .= "\r\n";
}
$fp = fsockopen($URL['host'], $URL['port']);
if (!$fp) {
die("ERROR\n");
}
fputs($fp, $request);
$response = "";
while (!feof($fp))
{
$response .= fgets($fp, 4096);
}
fclose($fp);
$DATA = split("\r\n\r\n", $response, 2);
echo "<!--\n".$request."\n-->\n";
echo "<!--\n".$DATA[0]."\n-->\n";
echo $DATA[1];
}