Exercice corrigé gratuit en Php :
Affichage d'un formulaire qui point vers une page admin.php en utilisant la méthode post et demandant une adresse mail et un mot de passe , et ajouter votre adresse IP sous le formulaire .
afficher dans la page admin.php : votre adresse mail est YYYYY et votre passe est YYYYY.
afficher dans la page admin.php : votre adresse mail est YYYYY et votre passe est YYYYY.
Solution :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>page 1</title>
</head>
<body>
<div style="width:50%; margin:auto; border-style:solid; border-color:#006699; border-width:1px; padding:30px 0 30px 50px;">
<form action="admin.php" method="post">
<table align="center">
<tr>
<th>e-mail</th>
<th><input type="text" name="mail" /></th>
</tr>
<tr>
<th>pass</th>
<th><input type="password" name="pass" /></th>
</tr>
<tr>
<th colspan="2"><input type="submit" value="Entrer" /></th>
</tr>
<tr>
<th colspan="2">Votre adresse IP est : <?php echo $_SERVER['REMOTE_ADDR'] ?></th>
</tr>
</table>
</form>
</div>
</body>
</html>
0 commentaires:
Enregistrer un commentaire