Skip to content

Commit

Permalink
Curso de PHP y MySql [27.- POO(Programacion Orientada a Objetos)]
Browse files Browse the repository at this point in the history
  • Loading branch information
programadornovato committed Dec 2, 2019
1 parent 370299a commit bc57f94
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions programacionOrientadaObjetos.php
@@ -0,0 +1,27 @@
<!doctype html>
<html lang="en">
<head>
<title>Programacion Orientada a Objetos</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<?php
class carro{

}
$lamborgini1=new carro();
$lamborgini2=new carro();
$bmw1=new carro();
$bmw2=new carro();
$cybertruck1=new carro();
$cybertruck2=new carro();
$cybertruck3=new carro();
$cybertruck4=new carro();
?>
</body>
</html>

0 comments on commit bc57f94

Please sign in to comment.