유아원님의 썸네일최신글로 만든 포트폴리오스킨.. 정보
최신글 유아원님의 썸네일최신글로 만든 포트폴리오스킨..관련링크
http://www.iallu.com
652회 연결
첨부파일
본문
유아원님의 스킨(http://sir.co.kr/bbs/tb.php/g4_skin/7420)을 가지고 밑에 글제목과..
링크1 값을 표시하고 링크를 걸었습니다...
이미지와..url은 해당 사이트로...
subject로는 해당 게시물로...
원활한 피드백을 위하여...
단 몇줄 추가하여 올려 봅니다...
포인트 순위가 점점 욕심이 나기도 하구요...
사용법은 유아원님의 스킨설명과 동일합니다...
링크1 값을 표시하고 링크를 걸었습니다...
이미지와..url은 해당 사이트로...
subject로는 해당 게시물로...
원활한 피드백을 위하여...
단 몇줄 추가하여 올려 봅니다...
포인트 순위가 점점 욕심이 나기도 하구요...
사용법은 유아원님의 스킨설명과 동일합니다...
추천
0
0
댓글 전체
감사합니다.
감사합니다.제목이 함께 출력되어서 더 좋네요.

감사합니다~~!
감사합니다.
감사합니다
잘 사용하겠습니다. 감사합니다.
잘 사용하겠습니다. 감사합니다.
자알 쓰겠습니다. ^^
잘 쓰겠습니다. 감사..
링크 주소가 매우 길때 가로로 매우 길게 나오네요...링크 주소 일정한 길이로 잘라버리는 방법은 없을까요? 도움 바랍니다.
latest.skin.php의 변수부분과 출력부분 두군데 수정하셔야 합니다..
변수부분...
--------------------------------------------------------------------------------------------------------------------------
<?
for ($i=0; $i<count($list); $i++)
{
if ($i > 0)
echo "<td width=20> </td>";
$img = "<img src='$latest_skin_path/img/no_image.gif' border=0 title='이미지 없음'>";
$thumb = $thumb_path.'/'.$list[$i][wr_id];
if (!file_exists($thumb))
{
$file = $list[$i][file][0][path] .'/'. $list[$i][file][0][file];
if (preg_match("/\.(jp[e]?g|gif|png)$/i", $file) && file_exists($file))
{
$size = getimagesize($file);
if ($size[2] == 1)
$src = imagecreatefromgif($file);
else if ($size[2] == 2)
$src = imagecreatefromjpeg($file);
else if ($size[2] == 3)
$src = imagecreatefrompng($file);
else
break;
$rate = $board[bo_1] / $size[0];
$height = (int)($size[1] * $rate);
$dst = imagecreatetruecolor($board[bo_1], $height);
imagecopyresampled($dst, $src, 0, 0, 0, 0, $board[bo_1], $height, $size[0], $size[1]);
imagepng($dst, $thumb_path.'/'.$list[$i][wr_id], $board[bo_2]);
chmod($thumb_path.'/'.$list[$i][wr_id], 0606);
}
}
if (file_exists($thumb))
$img = "<img src='$thumb' border=0>";
$href = "$g4[bbs_path]/board.php?bo_table=$bo_table";
$wr_link1 = nl2br(stripslashes(cut_str($list[$i][wr_link1], 20, '...' )));
echo <<<HEREDOC
----------------------------------------------------------------------------------------------------------------------------------
출력부분...
----------------------------------------------------------------------------------------------------------------------------------
{$list[$i][wr_link1]}을 {$wr_link1}으로 변경...
---------------------------------------------------------------------------------------------------------------------------------
추가변수 부분인
$wr_link1 = nl2br(stripslashes(cut_str($list[$i][wr_link1], 20, '...' )));
20대신에 임의의 숫자로 설정하시도 됩니다...
해당내용 수정 글자수 30으로 변경하여 다시 올립니다..
변수부분...
--------------------------------------------------------------------------------------------------------------------------
<?
for ($i=0; $i<count($list); $i++)
{
if ($i > 0)
echo "<td width=20> </td>";
$img = "<img src='$latest_skin_path/img/no_image.gif' border=0 title='이미지 없음'>";
$thumb = $thumb_path.'/'.$list[$i][wr_id];
if (!file_exists($thumb))
{
$file = $list[$i][file][0][path] .'/'. $list[$i][file][0][file];
if (preg_match("/\.(jp[e]?g|gif|png)$/i", $file) && file_exists($file))
{
$size = getimagesize($file);
if ($size[2] == 1)
$src = imagecreatefromgif($file);
else if ($size[2] == 2)
$src = imagecreatefromjpeg($file);
else if ($size[2] == 3)
$src = imagecreatefrompng($file);
else
break;
$rate = $board[bo_1] / $size[0];
$height = (int)($size[1] * $rate);
$dst = imagecreatetruecolor($board[bo_1], $height);
imagecopyresampled($dst, $src, 0, 0, 0, 0, $board[bo_1], $height, $size[0], $size[1]);
imagepng($dst, $thumb_path.'/'.$list[$i][wr_id], $board[bo_2]);
chmod($thumb_path.'/'.$list[$i][wr_id], 0606);
}
}
if (file_exists($thumb))
$img = "<img src='$thumb' border=0>";
$href = "$g4[bbs_path]/board.php?bo_table=$bo_table";
$wr_link1 = nl2br(stripslashes(cut_str($list[$i][wr_link1], 20, '...' )));
echo <<<HEREDOC
----------------------------------------------------------------------------------------------------------------------------------
출력부분...
----------------------------------------------------------------------------------------------------------------------------------
{$list[$i][wr_link1]}을 {$wr_link1}으로 변경...
---------------------------------------------------------------------------------------------------------------------------------
추가변수 부분인
$wr_link1 = nl2br(stripslashes(cut_str($list[$i][wr_link1], 20, '...' )));
20대신에 임의의 숫자로 설정하시도 됩니다...
해당내용 수정 글자수 30으로 변경하여 다시 올립니다..
감사합니다.
wow! good very
답변 고맙습니다. 너무 너무 좋은 스킨 만들어 주셔서 감사합니다.. 저는 추천사이트로 사용하려고 합니다.
감사합니다.
잘쓸게요^^
유아원님꺼랑.. 이거랑 두개를 동시에 돌려보니..
유아원님꺼는 그림에 링크가 있어서.. 누르니 그 페이지가 보이던가 하는데
누르니 index.php#으로 링크가 되는군요..? 실수이신지?
제가 잠시 돌리고 있는 형태 http://www.sc8000.net
유아원님꺼는 그림에 링크가 있어서.. 누르니 그 페이지가 보이던가 하는데
누르니 index.php#으로 링크가 되는군요..? 실수이신지?
제가 잠시 돌리고 있는 형태 http://www.sc8000.net
포트폴리오로 쓰기 위하여 내용보기로 연결이 아니라 링크1값으로 새창이 열리게 바꿨습니다...
주소 표시가 그렇게 되는게 거슬리시면 latest.skin.php 행당링크부분 href='#' 삭제...
문제가 있을 소지가 있네요..
링크코드 이렇게 바꾸니까 해결...
<a onMouseOver="this.style.cursor='hand'" onfocus='this.blur()' onclick="window.open('{$list[$i][link_href][1]}','_blank','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=600,height=400 top=10 left=10')">
주소 표시가 그렇게 되는게 거슬리시면 latest.skin.php 행당링크부분 href='#' 삭제...
문제가 있을 소지가 있네요..
링크코드 이렇게 바꾸니까 해결...
<a onMouseOver="this.style.cursor='hand'" onfocus='this.blur()' onclick="window.open('{$list[$i][link_href][1]}','_blank','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=600,height=400 top=10 left=10')">
감사합니다~
음...필요한것이군요..감사드립니다.
잘쓰겠습니다
잘쓰겠습니다.
감사
감사합니다^--^
잘쓰겠습니다^^ 감사합니다...
와 너무 좋아요 감사합니다^^
최근게시물로 쓰려고 하는데 어떻게 해야하는지 따로 코드가 없나요...
감사합니다.
이쁘네요_2
잘쓰겠습니다.
asda

링크 최신글
