File "subir_archivo.php"

Full path: /var/www/html/recibos/subir/subir_archivo.php
File size: 355 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Back

<?php
if (isset($_FILES['archivo'])) {
    $archivo = $_FILES['archivo'];
    $extension = pathinfo($archivo['name'], PATHINFO_EXTENSION);
	$time = time();
    $nombre = "{$_POST['nombre_archivo']}".$archivo['name'];
    if (move_uploaded_file($archivo['tmp_name'], "archivos_subidos/$nombre")) {
        echo 1;
    } else {
        echo 0;
    }
}
?>
  

PHP File Manager