Subir archivo

Subir el archivo de facturación

[insert_php]

include(«conexion.php»);

echo «

«;
echo ««;
echo «Enviar este fichero: «;
echo ««;
echo ««;

echo «
«;
echo «
«;
echo «

«;

if ($_FILES[‘fichero_usuario’][‘name’])
{
$target_path = «temp/»;
$target_path = $target_path . basename( $_FILES[‘fichero_usuario’][‘name’]);
if(move_uploaded_file($_FILES[‘fichero_usuario’][‘tmp_name’], $target_path))
{
echo «El archivo: «. basename( $_FILES[‘fichero_usuario’][‘name’]).» ha sido subido exitosamente!»;
$archivo = $_FILES[‘fichero_usuario’][‘name’];

$fp = fopen(‘temp/’.$archivo.», «r»);

$linea=fgets($fp);
$preside = substr($linea, 0, 6);
$mes = substr($linea, 6, 2);
$ano = substr($linea, 8, 4);
$cantidad = substr($linea, 12, 6);
$importe= substr($linea, 18, 10);
$decimal = substr($linea, 28, 2);
echo «
«.»pres ide: «.$preside;
echo «
«.»mes «.$mes;
echo «
«.»año «.$ano;
echo «
«.»Cantidad «.$cantidad;
echo «
«.»Importe «.$importe;
echo «
«.»Decimal «.$decimal;
fclose($fp);
}
else
{
echo «Hubo un error al subir tu archivo! Por favor intenta de nuevo.»;
}
}

[/insert_php]

PHP Code Snippets Powered By : XYZScripts.com