/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/// EDITAR NOVEDAD if(rpost("action")=="edit"){ $mensaje="Trabajo editado correctamente"; $id=rpost("id"); $texto=rpost("texto"); $texto2=rpost("texto2"); $visible=rpost("visible"); $imagenanterior=rpost("fotoanterior"); if (rpost("imagensubida")){ $imagen=rpost("imagensubida"); } else { $imagen=$imagenanterior; } query("update trabajos set texto1='$texto', texto2='$texto2', imagen='$imagen', visible='$visible' where id=".$id); } else { $mensaje=""; }