이미지 웹에서 불러오기
이미지 웹에서 불러오기$FilePath= (!empty($_GET['FilePath'])) ? $_GET['FilePath'] : "";$noImage = ""; // noImage 경로$ext = "jpg"; // 기본 확장자 $realfilepath = ""; if($BizFile != "") $realfilepath .= "/upload/".$FilePath;else $realfilepath .= "/upload/".$noImage; $fsize = filesize($realfilepath); if($FilePath!= "") $ext = substr($FilePath, strrpos($FilePath, ".")+1); header("Content-Type: image/".$ext) ; header..