본문 바로가기
웹프로그램

php 파일로 이미지 부르기

by 세이박스 2008. 10. 14.
반응형

$qry="select * from test where p_id=$p_id";
$rs=mysql_query($qry) or die(mysql_error());
$row=mysql_fetch_array($rs);
$pic=$row[p_url];
$up_hit=$row[p_hit]+1;

$pic_header=getimagesize($pic);


$qry_up="update test set p_hit=$up_hit where p_id=$p_id";
mysql_query($qry_up)  or die('line14'.mysql_error());



Header('Content-Type: image/$pic_header[mime]');

/*$fp=fopen($pic,"r"); //스트리밍

$count = fread($fp, filesize($pic));
echo $count;
*/

$im = imagecreatefromjpeg($pic);
Imagejpeg($im,'',20);
ImageDestroy($im);

반응형

'웹프로그램' 카테고리의 다른 글

PHP 이달의 마지막날  (0) 2008.10.14
PHP time()  (0) 2008.10.14
PHP 썸네일  (0) 2008.10.14
PHP Session + Cookie 동작 체계  (0) 2008.10.14
PHP str_replace  (0) 2008.10.14
PHP 게시판 페이징 처리  (0) 2008.10.14
이미지 액박 오류 표시 안되게 하기  (0) 2008.10.10
[TIP] INC 파일 드림위버MX 디자인 뷰에 보이게하는 방법  (0) 2008.10.08