Salut,
tu peux faire un formulaire en html, que tu place dans ta page authentification.php, du style :
center><form action="verification.php" method="post">
<table border="0" cellpadding="0" cellspacing="0" style="width: 300px; height: 150px">
<tbody>
<tr>
<td>Login</td>
<td><input type="text" name="login"></td>
</tr>
<tr>
<td>Mot de passe</td>
<td><input type="password" name="pass"></td>
</tr>
<tr>
<td></td>
<td><input type="reset" value="effacer"> <input type="submit" value="envoyer>>"></td>
</tr>
</tbody>
</table>
</form>
</center>
et dans verification.php, tu met :
<?php
$login = $_POST['login'];
$pass = $_POST[pass'];
if($_POST['login'] == "truc24")
{
header("Location: recherche.php");
}
?>--
------------------------------------------
>>Trop de paroles noient la vérité<<