Current Path : /home/baheco/public_html/adm/clases/controlador/texto/ |
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/controlador/texto/controlador-editar.php |
<?php if (isset($_POST['texto'])&&isset($_POST['id'])) { include_once(dirname(dirname(dirname(__FILE__))).'/modelo/texto.php'); include_once(dirname(dirname(dirname(__FILE__))).'/datos/datos-texto.php'); $texto = new Texto(); $textoDatos = new DatosTexto(); $texto->setId($_POST["id"]); $texto->setTexto($_POST["texto"]); $textoDatos->editarTexto('texto',$texto); header('Location: ../../../admin.php?seccion=editar-texto-central&operacion=correcto'); } else { header('Location: ../../../admin.php?seccion=editar-texto-central&operacion=incorrecto'); } ?>