ok doc te mando mi archivo PHP
Código PHP:
Ver original<?php
if($_GET['op']=="subir"){
$archivo = $HTTP_POST_FILES['userfile']['name'];
$direccion=$HTTP_POST_FILES['userfile']['tmp_name'];
$ruta="http://miweb.com/img/";
// is_uploaded_file - Indica si el archivo se ha subido a través de HTTP POST
copy($HTTP_POST_FILES['userfile']['tmp_name'],$ruta."$archivo");
echo "El archivo ha sido cargado y es publicado automaticamente \^\^";
}else{
echo "Ocurrió algún error al subir el fichero. No pudo guardarse.";
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<table align="center" border="0" width="379" height="51">
<tr>
<td align="center" height="51" width="373">
<form action="subir.php?op=subir" method="post" enctype="multipart/form-data">
Titulo de la foto:
<br />
<input type="text" name="texto" size="20" maxlength="100">
<br>
<br>
Envianos tu foto:
<br>
<input name="userfile" type="file">
<br>
<input type="submit" name="subirfoto" value="Enviar">
</form>
</td>
</tr>
</table>
</body>
</html>
me bota este error
Warning: copy(http://miweb.com/img/2012-07-09.txt) [function.copy]: failed to open stream: HTTP wrapper does not support writeable connections in /public_html/subir/subir.php on line 17
bueno ya probe con $HTTP_POST_FILES y $_FILES
Doc tu eres el unico que me puede ayudar .Mi amigo si lo puede hacer pero no me quiere enseñar.Si se puede hacer con Curl Enseñame como hacerlo
Telo agradecere