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/texto.php |
<?php class Texto { private $id; private $texto; //id public function setId($id) { $this->id=$id; } public function getId() { return $this->id; } //texto public function setTexto($texto) { $this->texto=$texto; } public function getTexto() { return $this->texto; } } ?>