程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 顯示保存在mysql數據庫中圖片代碼

顯示保存在mysql數據庫中圖片代碼

編輯:關於PHP編程

顯示保存在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) < 149000) {
      mysql_query ("insert into pix (title, imgdata) values ("".
      $_REQUEST[whatsit].
      "", "".
      $image.
      "")");
   } else {
      $

errmsg = "Too large!";
   }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved