Guest User

Untitled

a guest
Apr 25th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <div class="container">
  2.  
  3. <h3 class="text-center"><strong>Administración de facturas</strong> <i class="fa fa-pencil-square-o fa-2x" id="icono"></i></h3>
  4.  
  5. uploadUrl: 'subir.php',
  6.  
  7. });
  8.  
  9. $images = stripslashes($images);
  10. }
  11.  
  12. //$next_increment = $data['Auto_increment'];
  13. $nombreLogo = "logoPrueba2";
  14. //$code = $next_increment.$alea;
  15. $type = 'jpg';
  16. $rfoto = $_FILES['imagen']['tmp_name'];
  17. $name = $nombreLogo.".".$type;
  18. $ruta= 'soporteSalud/sandbox/imagenes/'.$name;
  19. if(is_uploaded_file($rfoto))
  20. {
  21. $destino = "imagenes/".$name;
  22. $nombre = $name;
  23.  
  24. copy($rfoto, $destino);
Add Comment
Please, Sign In to add comment