PHP を使用してページのコンテンツを非表示にしようとしていますが、常にエラーが発生します。これは私が使用しているコードです。次のデータは$pass
、他のページから送信されたフォームから取得されます。
<?php
$pass = $_POST['pass'];
$password = "content"; // Modify Password to suit for access, Max 10 Char.
?>
<html>
<title></title>
<head>
<?php
// If password is valid let the user get access
if ( "$pass" == "$password") {
?>
<!-- START OF HIDDEN HTML - PLACE YOUR CONTENT HERE -->
</head>
<body>
You have gained access!
<!-- END OF HIDDEN HTML -->
<?php
} else {
// Wrong password or no password entered display this message
print "<p align=\"center\"><font color=\"red\"><b>Restricted Area!</b><br>Please enter from the log in page</font></p>";}
}
?>
</body>
</html>