웹프로그램
iframe 대신으로 페이지 삽입시키기
세이박스
2008. 10. 8. 21:15
반응형
<object type="text/x-script-xlet" width=0 data="xxx.html">
이때 html 코드만 인식
<img src="xxx.php" width=0 height=0>
이때 xxx.php는 header를 이미지로 받아야...
$file="../../upLoad/expose/".$row[filename];
$img=@getimagesize($file);
$img_type=$img[mime];
Header("Content-Type: $img_type");
이때 html 코드만 인식
<img src="xxx.php" width=0 height=0>
이때 xxx.php는 header를 이미지로 받아야...
$file="../../upLoad/expose/".$row[filename];
$img=@getimagesize($file);
$img_type=$img[mime];
Header("Content-Type: $img_type");
반응형