<?php
  require_once( "Cabeza5.inc" );
?>
  <body>
    <?php
      $EscribePrecios = TRUE;
      print(   "<p class=\"TitleFont\">
                  Como regresar a HTTP adentro de PHP
                  <br />
                  <br />
                </p>" );

      if( $EscribePrecios )
      {
        ?>
        <table style="margin:auto;" >
          <tr>
            <td colspan = "3">
              Precios en Dólares ahora
            </td>
          </tr>
          <tr>
            <td>
              14
            </td>
            <td>
              32
            </td>
            <td>
              71
            </td>
          </tr>
        </table>
        <?php
      }
      else
      {
        print( "<p>No precios ahora<br /></p>" );
      }
    require_once( "incPie5.php" );
    ?>