Skip to content

Instantly share code, notes, and snippets.

@celestecastillo0
Created October 25, 2021 14:32
Show Gist options
  • Save celestecastillo0/062ab97a5fe4756c9205cecb3b45bd72 to your computer and use it in GitHub Desktop.
Save celestecastillo0/062ab97a5fe4756c9205cecb3b45bd72 to your computer and use it in GitHub Desktop.
Dwab_UII_poo
<html>
<body>
<?php
class Fruta {
// Properties
public $nombre;
public $color;
// Methods
function Escribe_n($nombre) {
echo"El nombre de la fruta es $nombre <br>";
}
function NumeroM($n,$nombre) {
while($n <= 7)
{
echo"<br>No.$n El nombre de la fruta es $nombre";
$n++;
}//fin while
}//fin de numero
}//fin de clase
$objfruta = new Fruta();
$objfruta->Escribe_n("Manzana");
$objfruta->NumeroM(1,"platano");
echo"<br>Celeste Castillo Flores ";
?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment