PHP Nuevo Registro


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



Copy this code and paste it in your HTML
  1. /// NUEVA NOVEDAD
  2. if(rpost("action")=="new"){
  3. $mensaje="Trabajo creado correctamente";
  4.  
  5. $texto=rpost("texto");
  6. $texto2=rpost("texto2");
  7. $imagen=rpost("imagensubida");
  8.  
  9. query("insert into trabajos (texto1, texto2, imagen, visible) values ('$texto', '$texto2', '$imagen', '1')");
  10. $rid=query("select last_insert_id() as id");
  11. $id=ver($rid, 0, "id");
  12.  
  13. } else {
  14. $mensaje="";
  15. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.