English 中文(简体)
PHP - multi file upload
原标题:PHP - multiple file upload

我正在为客户建立一个简单的客户管理系统。 他们需要掌握员工情况的能力。

每个简介都需要图像。

目前,我有增加雇员的一种形式,把上载的形象与单一记录联系起来是容易的。

在记录上添加表格之后,我有一份现有记录清单(以及图像的umb)。 这些记录在表格的标签之间打印,在每一记录旁打上一个核对箱(在提交表格时,注明删除)。

我也希望使用这一表格记录;删除首先发生,然后是<代码>_POST数据按格式分类和更新记录。

如果某一记录没有与之相关的图像,而不是一个th子,则打印一个文档输入标。 由于记录数量不一,文档标注全称为image [,因此我可以轻易通过。

Question: how do I correlate $_FILES data with $_POST data? Do I have to name each file input to image_<?=$record_id?> to determine which record the file belongs to?

最佳回答

而不是

<input name="image[]">

a. 用作占领阵列,用于:

<input name="image[id_<?=$record_id?>]">
问题回答

你们的解决办法是好的,即为以下目标增加记录:

image[<?=$record_id?>];

然后,你可以按阵列指数加以校正。

采用缺省<代码>外地名称[]代号,你可以控制在POST/GET/REquestST/FILES中将PHP分配给服务器-侧代表的指数。 购买力平价只是按顺序加起来,如果你的形式存在差距,一旦数据打到服务器,就会出现损失。

无论怎样,您都能够编制表格索引,以便<代码>外地名称[7]和<代码>newimage[7]都与以您的形式出现的同一领域有关。

您将需要指定每个档案资料,并通过<代码>获取。 FILES[独有名称]/代码。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签