Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <HTML>
  2. <HEAD>
  3. <TITLE>New Document</TITLE>
  4. </HEAD>
  5. <BODY>
  6. <?php
  7.  
  8. function Valor(){
  9. $Senha1 = $_GET["t1"];
  10. $Senha2 = $_GET["t2"];
  11. $resultado = (strcmp ($Senha1,$Senha2));
  12.  
  13. return $resultado == 0 ? "<font color='#008000'>Ok Senha Correta &nbsp;</font><img src='correto.png' width=25>":"<font color='#FF0000'>Senha Incorreta &nbsp;</font><img src='erro.jpg' width=25>";
  14.  
  15. }
  16. echo Valor();
  17.  
  18. ?>
  19.  
  20. </BODY>
  21. </HTML>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement