BugInTheSYS

Untitled

May 5th, 2012
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2.  
  3. $mivariable = 10;
  4. if ($mivariable > 4) {
  5. echo "mi variable era mayor que cuatro!";
  6. } else {
  7. echo "mi variable era menor o igual a cuatro!";
  8. }
  9.  
  10. $persona = "Gabriel";
  11. $web = "elparadigmadelaverdad.com";
  12.  
  13. if ($persona == "Gabriel") {
  14. echo "<p>La persona es Gabriel";
  15. if ($web == "elparadigmadelaverdad.com") {
  16. echo "<br>Además la web es elparadigmadelaverdad.com ! !";
  17.  
  18.  
  19. }
  20.  
  21.  
  22. }
  23.  
  24. ?>
Advertisement
Add Comment
Please, Sign In to add comment