私は長い間研究を続けており、これを何百回も行ってきましたが、今は忘れています。最も単純なこと。PHPでパスワードを保護する方法。[送信]をクリックしても何も表示されないので、助けてください。これが私のコードです:
<html>
<style type="text/css">
#textbox1 {
text-shadow:2px 2px 3px #000000;
}
label {
text-shadow:2px 2px 3px #000000;
font-family:"Arial";
}
</style>
</style>
<script type="text/javascript">
function clearText(target){target.value= "";}
</script>
<head>
<center>
<form action="" method="POST">
<label face="Arial">Password: </label><input id="textbox1" type="password" name="password" value="" onfocus="clearText(this)">
<input id="button" type="submit" value="Login to Uploader">
</form>
</center>
</html>
<?php
$pass = $_POST['password'];
$submit = $_POST['submit'];
if (isset($_POST['submit'])) {
if ($pass == "pengsuploader123" || $pass="pass") {
echo "Test";
} else {
echo "Wrong!";
}
}
?>