我在处理这个表格时遇到了问题。我希望用户能够编辑数据库中的项目。他们在一个页面上选择了要编辑的项目,并通过 GET 将其发送到编辑页面。GET 具有他们需要编辑的项目的 ID。
编辑页面加载插入到用户表单中的项目的详细信息(除了文件名),此字段留空。我正在尝试执行一些逻辑来检查用户是否选择了文件。
如果他们没有,那么这个字段应该被忽略,因为我认为用户对已经上传的文件很满意。
如果他们选择了一个文件,那么这意味着他们希望这是新图片。只有这样我才想运行逻辑来上传图片并将其名称插入数据库。
我通过以下方式获取我的 POST 详细信息:
$clean_pic = $_POST['pic'];
然后我说如果它是空白的,那么什么都不做,否则运行上传:
if($clean_pic = ''){}
else{
它不工作。任何想法我应该如何找出它是否为空白?删减代码:
if (isset($_POST['add']))
{
// validate 'pic': must consist of alphanumeric characters only.
$_POST['pic'] = isset($_POST['pic']) ? $_POST['pic'] : '';
//if(preg_match('/\.(jpg|gif|jpeg)$/i',$_POST['pic']))
//{
$clean_pic = $_POST['pic'];
//}
//else
//{$error++; $errmsg .= 'Invalid pic. ';}
}
if (isset($_POST['add']) && ($error==0))
{
if (!isset($_POST['pic'])) { echo"test1";}
else {echo"test222";}
/*tied this too but it didnt work (it will always display result 1):
if (!isset($_POST['pic'])) { echo"test1";}
if (isset($_POST['pic'])) {echo"test222";}*/
}
else //output error messages
{
/////////render form
?>
<form enctype="multipart/form-data" action="" method="post" id="save"><fieldset>
<table id="site-form">
<tr>
<td class="one_of_three"><label>Item Name: </label></td>
<td class="two_of_three"><input type="text" name="fileName" id="fileName" value="<?php echo"$db_name";?>"/></td>
<td><label class="errors" id="fileNameError"> </label></td>
</tr>
<tr>
<td class="one_of_three"><label>Picture: </label></td>
<td class="two_of_three"><input type="file" name="userfile[]" id="pic"/></td>
<td><label class="errors" id="picError"> </label></td>
</tr>
<tr>
<td class="one_of_three"> </td>
<td class="two_of_three"><input name="add" id="save_button" type="submit" value="Update"/> <a href="../">Cancel</a>.</td>
<td> </td>
</tr>
</table>
</fieldset></form>
<?php }?>