Advertisement
Guest User

sdsqd LEOOOOO PUYTTTATATATA

a guest
Oct 22nd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php $bonLog="didier";
  2. $bonMdp="courgette";
  3. $nein=0;
  4.  
  5. $recupLo=$_GET["login"];
  6. $recupPa=$_GET["passw"];
  7.  
  8. if($bonLog != $recupLo){
  9. $nein=1;
  10. echo"Mauvais login ";
  11. }
  12.  
  13. if($bonMdp != $recupPa){
  14. $nein=1;
  15. echo"Mauvais mot de passe";
  16. }
  17.  
  18. if($nein == 0){
  19. header("Location: formHtml.php");
  20. }
  21.  
  22. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement