-2

我想将图像插入到 mssql 中,为用户提供选择图像并插入数据库的选项。所以我使用了以下代码

<html>
<head>
<?php 
if ($_SERVER["REQUEST_METHOD"] == "POST") 
{
mmysql_connect("localhost","sample","welcome");
mysql_select_db("samples");

if (empty($_POST["frm"]))   
{

}
else
{
$filename=trim($_REQUEST['slcfile']);
$datastring = file_get_contents($filename);
$data         = unpack("H*hex", $datastring);
echo trim($_REQUEST['slcfile']);
mssql_query("insert into imageinserter values ( 0x".$data['hex'].",'.$filename.')"); 
}

}
?>
</head>
<body>
<form name="frm" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>" method="post" >
select image :<input type="file" name="slcfile" /> <br>
<input type="submit" name="slcfile" value="addimage"/> 
</form>
</body>
</html>

但它在 file_get_contents 处说错误错误,说没有找到这样的文件或资源。请帮助解决问题

提前致谢

4

2 回答 2

1

multipart/form-data像这样在你的表单中使用:

<form enctype="multipart/form-data" name="frm" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>" method="post">

然后通过其临时名称读取上传的文件,例如:$_FILES['uploadedfile']['tmp_name']

于 2013-03-26T10:19:37.130 回答
0

你需要允许

   allow_url_fopen

在您的 php.ini 配置文件中。出于安全考虑,一些主机不允许它

于 2013-03-26T10:20:05.523 回答