Panel Logowania dla htpasswd nie działa w IExplorer. W Chrome wszystko jest ok.
W czym problem?
<?
if (isset($_POST['done']))
{
$url = "std64.com/secure";
$site = "http://".$_POST['user'].":".$_POST['pass']."@".$url;
header("Location: $site");
}
?>
<html>
<form action="<?=$PHP_SELF?>" method="POST">
User <input type="text" name="user"><br>
Pass <input type="password" name="pass"><br>
<input type="submit" name="done">
</form>
</html>