需要远程文件上传帮助

这是我的正常文件上传代码。

HTML

<form action="" method="post" enctype="multipart/form-data" name="form1" id="form1">
      <input name="theFile" type="file" />
      <input name="Submit" type="submit" value="Upload">
    </form>

PHP变量接收文件

$fileName = $_FILES['theFile']['name'];
$fileTempName = $_FILES['theFile']['tmp_name'];

现在我想使用远程上传。

所以我创建了一个这样的表单

<form method="POST" action="<?=$self?>">
<input type="text" name="file[]"  size="45" value="">
<input name="submit" type="submit" id="submit" value="submit" accesskey="s"></p>
</form>

我必须在上面的表格中输入文件的URL。 当我提交表单时,我希望文件文件详细信息存储在这些变量$fileName,$fileTempName

我不希望他们在本地存储。 我试图在亚马逊S3上传中使用这些变量。 你们能帮我吗? 谢谢


尝试这个:

$ch = curl_init("http://www.remotepage.com/upload.php"); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CUROPT_POSTFIELDS, array('fileupload' => '@'.$_FILES['theFile']['tmp_name'])); 
echo curl_exec($ch); 

您正尝试进行远程上传,但无法将其重新上传到您的服务器? 你为什么不把你的表格发送到你的上传地点并在那里处理? 这是最快和最好的解决方案..

链接地址: http://www.djcxy.com/p/64853.html

上一篇: Remote file upload help needed

下一篇: Show updated files in response to comments