我正在使用 php 构建脚本以将图像上传到数据库中,但由于以下错误而被卡住:当我在浏览器中打开页面时,以下消息显示给我:
注意:未定义索引:第 10 行 C:\xampp\htdocs\12\index.php 中的图像请选择一个文件
下面是我的初始形式的脚本:
<html>
<body>
<form action="index.php" method="post" enctype="multipart/form-data">
File:<input type="file" name="image" /><input type="submit" value="upload" />
</form>
<?php
mysql_connect("localhost","root","") or die(mysql_error());
mysql_select_db("databaseimage") or die(mysql_error());
//files properties
echo $file = $_FILES["image"]["tmp_name"];
if(!isset($file))
echo'please select a file';
else{
$image = $_FILES['image']['tmp_name'];
}
?>
</body>
</html>