miércoles, 4 de diciembre de 2013

CLASES

<fieldset>
    <fieldset>
<?php
require_once "encabezado.php"
?>
  </fieldset>
  <html>
<head>
<H3><CENTER>ANIMAL</CENTER></H3>
</head>
</html>
<?php
class Animales {
var $Tipo;
var $habitad;
var $alimento;
function nacer(){
echo "a nacido";
}
function crecer(){
echo "a crecido ";
}
function reproducir(){
echo "se a reproducido";
}
function morir(){
echo "a muerto";
}
function Animales($tip){
$this->Tipo=$tip;
echo "TIPO DE ALIMENTO: ".$this->Tipo;
}
}
class Alimentos {
function alimentos($al){
$this->alimento=$al;
echo "TIPO DE ALIMENTO: ".$this->alimento;
}
}
class abitad {
function Abitad($habit){
$this->habitad=$habit;
echo "HABITAD NATURAL: ".$this->habitad;
}
}
$alimentos= new Alimentos("LECHUGA");
echo"<br>";
$animales= new Animales("TORTUGA");
echo"<br>";
$Abi= new abitad("SELVAS TROPICALES");
echo"<br>";
$gato=$animales->nacer();
echo"<br>";
$gato=$animales->crecer();
echo"<br>";
$gato=$animales->reproducir();
echo"<br>";
$gato=$animales->morir();
echo"<br>";
echo"<br>";
echo"<br>";
?>
  <html>
<head>
<a href="master.php">cerrar session</a>
</head>
</html>


0 comentarios:

Publicar un comentario