Home > php教程 > php手册 > body text

显示保存在mysql数据库中图片代码

WBOY
Release: 2016-06-13 10:07:44
Original
1101 people have browsed it

显示保存在mysql教程数据库教程中图片代码

header( "content-type:image/gif ");
include( "../inc/conn.php教程 ");
mysql_select_db( "ce_cdprog ",$db);
$rs=mysql_query( "select   *   from   pic   where   id=$id ");
$row=mysql_fetch_array($rs);
echo   $row[ "mc "];

//方法二

while (($row=$results->fetch_assoc()) !==null)
{
header( "Content-type:{$row['image_type']}");
echo $row['image'];
imagedestroy($img);
}

//图片保存到数据库

move_uploaded_file($_FILES['imagefile']['tmp_name'],"latest.img");
   $instr = fopen("latest.img","rb");
   $image = addslashes(fread($instr,filesize("latest.img")));
   if (strlen($instr)       mysql_query ("insert into pix (title, imgdata) values ("".
      $_REQUEST[whatsit].
      "", "".
      $image.
      "")");
   } else {
      $

errmsg = "Too large!";
   }

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template