LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 778|回复: 1

新手求助关于上传的图片不能显示的问题

[复制链接]
发表于 2004-1-19 15:09:06 | 显示全部楼层 |阅读模式
我用mysql+php 做了个很简单的上传图片的例子。上传的图片已经存储在mysql中,可是浏览器却不能显示出来。想问一下各位,可能是哪里出了问题?

create table picture (id int(4) not null auto_increment primary key,
           description char(50),
           bin_data longblob,
           filename char(50),
           filesize char(50),
           filetype char(50));


//show.php
<?php
if($id)
{
mysql_connect("localhost","root","8888");
mysql_select_db("example");
$query="select bin_data,filetype from picture where id=$id";
$result=mysql_query($query);

$data=mysql_result($result,0,"bin_data");
$type=mysql_result($result,0,"filetype");
header("Content-typetype");
echo $data;
}
?>


//show.html

<html>
<body>

<IMG SRC="show.php?id=2">

</body>
</html>
 楼主| 发表于 2004-1-20 09:58:04 | 显示全部楼层
怎么没有人回?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表