Skip to content

Commit

Permalink
Curso de PHP y MySql [11.- Operadore spaceship o nave espacial]
Browse files Browse the repository at this point in the history
  • Loading branch information
programadornovato committed Nov 24, 2019
1 parent f9a8279 commit 1934828
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions tutoNaveEspacial.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Nave espacial</title>
</head>
<body>
<?php
/*
echo (10<=>10)."</br>";
echo (20<=>10)."</br>";
echo (10<=>20)."</br>";
*/
$edad=16;
$acceso=$edad<=>18;

if($acceso==-1){
echo "Nel morro, no puedes entrar</br>";
}
if($acceso==0){
echo "Simon pasaste por poco</br>";
}
if($acceso==1){
echo "Simon pasele señor</br>";
}

?>
</body>
</html>

0 comments on commit 1934828

Please sign in to comment.