알지보드 4 최근글 롤링 배너 만들기

알지보드 4의 최근글 중 이미지를 불러와서 불러온 이미지를 롤링하게 만드는 소스 입니다.


소스 내용은 이미지 최근을 보여줄 새로운 페이지를 만듭니다.


scroll.php 라는 임의 페이지를 만드는거죠.


소스 내용은


<html>
<head>
<title><?=$_site_info[‘site_name’]?></title>
<meta http-equiv=”Content-Type” content=”text/html; charset=euc-kr”>
<link href=”<?=$_url[‘css’]?>style.css” rel=”stylesheet” type=”text/css”>
</head>
<?
 include_once(“../rg4_include/lib.php”);
?>
<?=rg_lastest(‘게시판id’,’최근글스킨명’,10,40)?>


 


이렇게 해서 알지보드 경로의 include 폴더에 넣어 줍니다.


 


그리고


img_scroll.php 파일을 만듭니다.


소스는 다음과 같아요


<table width=”560″ border=”0″ align=”center” cellpadding=”0″ cellspacing=”0″ onMouseOut=”start()”  onMouseOver=”stop()”>
  <tr>
    <td width=”560″ height=”183″ align=”center” valign=”middle”>
 <MARQUEE id=”scroller” scrollAmount=3 direction=left height=130 width=560>
   <? include_once(“../include/scroll.php”); ?>
 </marquee>
 </td>
  </tr>
</table>


 


이렇게 해서 알지보드 경로의 include 폴더에 넣어 줍니다.


 


다음은 이미지 롤링을 집어 넣을곳에 아래의 코드를 입력해주세요.


<? include_once(“../include/img_scroll.php”); ?>


 


이렇게 해주시면 됩니다.

더 보기

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다

Back to top button