Ver Mensaje Individual
  #4 (permalink)  
Antiguo 13/03/2011, 14:09
geminis19
 
Fecha de Ingreso: febrero-2006
Mensajes: 58
Antigüedad: 19 años
Puntos: 0
Respuesta: Upload file CURL

Cita:
Iniciado por duskrow Ver Mensaje
<?php

/* http://localhost/upload.php:
print_r($_POST);
print_r($_FILES);
*/

$ch = curl_init();

$data = array('name' => 'Foo', 'file' => '@/home/user/test.png');

curl_setopt($ch, CURLOPT_URL, 'http://localhost/upload.php');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

curl_exec($ch);
?>
Hola, intente con ese codigo, y tampoco funciona, pero si quito el fichero a enviar si funciona.

en conclusión no funciona con ningun tipo de fichero de cualquier peso??

ayudaaaaaa