我已经检查过php.ini文件上传是否开启。 下面是代码请帮帮我。 文件未上传到文件夹图像中。 我不知道代码的问题是什么。 问题不在于查询,因为(!空($ _ FILES [" uploadedimage"] [" name"]))不会上传图片。
<form enctype="multipart/form-data" method="post">
<th><input style=" width:100px; font-size:13px" name="op" Placeholder="Operator Name"/></th>
<th> <input class="file-upload-input" type="file" name="uploadedimage"></th>
<th> <input class="btn btn-danger" type="submit" name="uploadnow" value="SUBMIT" class="theme-btn btn-style-one"></th>
</tr></form>
<?php
function GetImageExtension($imagetype)
{
if(empty($imagetype)) return false;
switch($imagetype)
{
case 'image/bmp': return '.bmp';
case 'image/gif': return '.gif';
case 'image/jpeg': return '.jpg';
case 'image/png': return '.png';
default: return false;
}
}
if (!empty($_FILES["uploadedimage"]["name"])) {
$file_name=$_FILES["uploadedimage"]["name"];
$temp_name=$_FILES["uploadedimage"]["tmp_name"];
$imgtype=$_FILES["uploadedimage"]["type"];
$ext= GetImageExtension($imgtype);
$imagename=date("d-m-Y")."-".time().$ext;
$target_path = "images/".$imagename;
if($_POST['uploadnow'])
{
$op=$_POST['op'];
if(move_uploaded_file($temp_name, $target_path)) {
$sql="INSERT INTO operator(op,mono) VALUES('".$op."','".$target_path."') ";
mysql_query($sql) or die
("error in $query_upload == ----> ".mysql_error());
}
}
?> <script type="text/javascript">
document.location.href='operator.php';
</script>
<?php
}
?>
答案 0 :(得分:0)
尝试使用$ target_path =&#34; / images /&#34;。$ imagename;
答案 1 :(得分:0)
尝试将这些行放在代码顶部以显示所有PHP错误/警告并查看您获得的内容。
error_reporting(E_ALL);
ini_set('display_errors', 1);