Current Path : /home/baheco/public_html/adm/clases/modelo/ |
Linux sd-1582531-l.dattaweb.com 3.10.0-1160.118.1.el7.x86_64 #1 SMP Wed Apr 24 16:01:50 UTC 2024 x86_64 |
Current File : /home/baheco/public_html/adm/clases/modelo/logo.php |
<?php class Logo { private $id; private $imagen; //id public function setId($id) { $this->id=$id; } public function getId() { return $this->id; } //imagen public function setImagen($imagen) { $this->imagen=$imagen; } public function getImagen() { return $this->imagen; } } ?>