jueves, 7 de noviembre de 2013

EJERCICIO DE PARAMETRIZACION EN PHP



ORIGEN
<?PHP
include_once("cabezera.php");
require("contenido.php");
include_once("pie.php");
?>

CABEZERA
<?PHP
"<html>";
"<head><title> LOGO </title></head>";
echo "<br>";
echo "<br>";
echo "<h2><center> GATITO </center></h2>";
echo "<br>";
echo "<br>";
echo "<center> <img src=\"imagesG.jpg\">";
echo "<br>";
"</html>";
?>

CONTENIDO
<?PHP
"<html>";
"<head><title> CONTENIDO </title></head>";
echo"<br>";
echo"<br>";
echo "<h2><center>1.-QUE ES UN OBJETO</center></h2>";
echo "<h2><center>2.-CARACTERISTICAS</center></h2>";
echo "<h2><center>3.-QUE ES UN ATRIBUTO</center></h2>";
echo "<h2><center>4.-CUALES SON LAS CLASES</center></h2>";
echo "<h2><center>5.-QUE SON LOS METODOS</center></h2>";
echo"<br>";

"</html>";
?>

 PIE
<?php
echo"<br>";
echo"<br>";
echo"<br>";
echo"<br>";
echo "<h2><right> NOMBRE: MERCY LOPEZ&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp  CICLO: 5TO SISTEMAS</right></h2>";
?>


No hay comentarios:

Publicar un comentario