lunes, 28 de enero de 2013

Ejercicio: eje7.2.php


<?php
/*
Author:Andrea
Date: 28/01/2013
Nombre del Fichero: 7.2 php
Descripción: Tarifa de precios
*/
?>
<html>
<head>
<title>Su tarifa</title>
<body bgcolor="violet"><font face="arial"> <font size="+1">

<p>
<?php

 extract($_REQUEST);
if ( ! isset ($enviar )) { // Get form input
  exit;
  }
  
?>
<table border="1" cellpadding="10"><tr bgcolor="pink">
<?php
  if ($edad > 0 && $edad < 13) {
    $price = 5.00;
print "<td><b>Ud. paga $price € tarifa de niños!</td>";
  }
  elseif ($edad >=13 && $edad < 55 ){
    $price = 8.25;
print "<td><b>Ud. paga $price € tarifa normal de adulto.</td>";
  }
  elseif ($edad >=55 && $edad <=120 ){
    $price = 10.00;
print "<td><b>Ud. paga $price € tarifa para mayores.</td>";
  }
  else {
    print "<td><b>Ud. no es humano.</td>";
  }
 ?>
</tr>
</table>
</font>
</body>
</html>

No hay comentarios:

Publicar un comentario