0

http://blueimp.github.com/jQuery-File-Upload/

顺序:

在我使用的这个文件上传器中,我想使用$_GET['id']请求传递一个值,如下所示:

http://mysite.com/message?id=2

问题:

$_GET['id']=2无法在/server/php/ 文件夹中的upload_class.phpindex.php中读取。从程序中读取$_GET['id']值的最佳方法是什么?

熟悉该程序的人可以帮助我吗?提前致谢 ...

4

1 回答 1

2

您可以通过上传图片时发布的表单发送数据。

有两种方法可以做到这一点。获取或发布数据。


得到

更改action表单的属性以包含附加参数:

<form action="blueimp/php/index.php?id=2" method="post" enctype="multipart/form-data">

使用以下命令访问 index.php 中的变量:

$id = $_GET['id'];

邮政

使用您要传递的值向表单添加一个输入字段:

<form action="blueimp/php/index.php" method="post" enctype="multipart/form-data">


  <input type="hidden" name="id" value="2" />


  <div style="float:left;">
    <label class="fileinput-button">
      <span>Add Images</span>
      <input id="fileSelector" type="file" name="files[]" multiple>
    </label>
    <button type="button" class="delete">Delete Selected</button>
    <button type="button" class="checkAll">Check All</button>
  </div>
</form>

使用以下命令访问 index.php 中的变量:

$id = $_POST['id'];
于 2012-10-04T00:49:09.813 回答