Salve, da poco mi sono avvicinato al php, e analizzando vari script di aree private ne ho fatto uno mio. ebbene mi escono degli errori come ad esempio:
Notice: Undefined variable: username in C:\xampp\htdocs\sito.it\private.php on line 16
Notice: Undefined variable: password in C:\xampp\htdocs\sito.it\private.php on line 16
se qualcuno sa aiutarmi glie ne sarei grato!
Notice: Undefined variable: username in C:\xampp\htdocs\sito.it\private.php on line 16
Notice: Undefined variable: password in C:\xampp\htdocs\sito.it\private.php on line 16
se qualcuno sa aiutarmi glie ne sarei grato!
PHP:
<html>
<body>
<form action="private.php" method="post">
Username<input type="text" name="username" >
Password<input type="password" name="password">
<input type="submit" name="Entra">
</form>
<?php
$username = $_POST['username'];
$password = $_POST['password'];
if (isset($_POST['username']) and ($_POST['password'])){
if (($username == 'fra' and $password == 'asc')
or($username == 'gab' and $password == 'lod')){
echo file_get_contents("newsletter.txt");
echo ("<a href='private.php'>Esci</a>");
header("location: $username.php")
?>
//.....altro contenuto......
</div>
<?php
;}
else {echo "Username o Password Errata! Riprova!";}
}
?>
</body>
</html>
Ultima modifica di un moderatore: