http://blueimp.github.com/jQuery-File-Upload/
序列:
在我使用的这个文件上传器中,我想使用 $ _ GET ['id'] 请求传递一个值,如下所示:
问题:
无法在 upload_class.php 或 index.php 内的文件夹中读取$ _ GET ['id'] = 2 /服务器/ PHP /。从程序中读取 $ _ GET ['id'] 值的最佳方法是什么?
那些熟悉程序的人可以帮助我吗?提前致谢 ...答案 0 :(得分: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'];