게시판스킨/view_comment.skin.php 의 49번째줄 쯤 
<!-- 댓글 출력 --> 아래쪽의 
<?php echo $comment ?> 이부분을 아래의 코드로 변경 

<? 
$str = $list[$i][content]; 

$str = preg_replace("/\[\<a\s.*href\=\"(http|https|ftp|mms)\:\/\/([^[:space:]]+)\.(mp3|wma|wmv|asf|asx|mpg|mpeg)\".*\<\/a\>\]/i", "<script>doc_write(obj_movie('$1://$2.$3'));</script>", $str); 
$str = preg_replace("/\[\<a\s.*href\=\"(http|https|ftp)\:\/\/([^[:space:]]+)\.(swf)\".*\<\/a\>\]/i", "<script>doc_write(flash_movie('$1://$2.$3'));</script>", $str); 
$str = preg_replace("/\[\<a\s.*href\=\"(http|https|ftp)\:\/\/([^[:space:]]+)\.(gif|png|jpg|jpeg|bmp)\".*\<\/a\>\]/i", "<img src='$1://$2.$3' id='target_resize_image[]' onclick='image_window(this);'>", $str); 
echo $str; 
?> 


※중요!! 이미지를 업로드 시키는게 아니라 이미지를 보이게 나타내는 태그입니다.  
[https://www.google.co.kr/images/srpr/logo11w.png] 이런식으로 이미지가 업로드된 경로가 필요합니다.

+ Recent posts