PHP Update Registo


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. /// EDITAR NOVEDAD
  2. if(rpost("action")=="edit"){
  3. $mensaje="Trabajo editado correctamente";
  4. $id=rpost("id");
  5. $texto=rpost("texto");
  6. $texto2=rpost("texto2");
  7. $visible=rpost("visible");
  8. $imagenanterior=rpost("fotoanterior");
  9.  
  10. if (rpost("imagensubida")){
  11. $imagen=rpost("imagensubida");
  12. } else {
  13. $imagen=$imagenanterior;
  14. }
  15.  
  16. query("update trabajos set texto1='$texto', texto2='$texto2', imagen='$imagen', visible='$visible' where id=".$id);
  17.  
  18.  
  19. } else {
  20. $mensaje="";
  21. }
  22.  

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.