You cannot see this page without javascript.

베너관리 코드

Programing 조회 수 230 추천 수 0 2016.08.04 11:28:52

아는 지인의 요청으로 대략적인 코드를 구현해 보았다.

이 코드는 특정 리렉토리에 링크가 될 웹주소.확장자 형식으로 배너그림파일을 저장하면 자동으로 배너를 뿌려주고 링크를 걸어주는 코드이다.

이코드를 기본으로 순서에 대한 기능들을 추가하면 배너관리에 효율적일거 같아 게시해본다,

 

<?php
$dir = "./image";
$handle  = opendir($dir);
$files = array();
while (false !== ($filename = readdir($handle)))
{
    if($filename == "." || $filename == "..")
    {
        continue;
    }
    if(is_file($dir . "/" . $filename))
    {
        $files[] = $filename;
    }
}
closedir($handle);
sort($files);
foreach ($files as $f)
{
    $fn = substr($f,0,strrpos($f,"."));
    echo "<a href=http://$fn><img width=200 height=50 src=$dir/$f /></a>";
    echo "<br />";
}
?> 

 

엮인글 :
List of Articles
번호 제목 글쓴이 날짜 조회 수
369 APM mariadb download origin address LynX 2019-06-19 1991
368 APM What one can and should optimize LynX 2019-06-03 1418
367 CentOS mariadb install LynX 2019-05-31 1182
366 CentOS init mode change LynX 2019-05-30 1290
365 APM ext zip install LynX 2019-02-19 1614
364 APM ext ImageMagick install LynX 2019-02-19 513
363 3D Printer Pronterface(PrintRun) install file LynX 2018-09-13 753
362 CentOS Grub UUID change LynX 2018-08-08 868
361 Linux letsencrypt wildcard LynX 2018-07-26 798
360 Printer cura usb connection LynX 2018-07-06 666
359 CentOS cli 무선랜 LynX 2018-06-07 448
358 APM 윈도우에 APM 페키지 설치 file LynX 2018-05-04 587
357 APM MySQLTuner 설치 LynX 2018-04-27 545
356 CentOS CentOS7 커널 업데이트 LynX 2018-04-23 702
355 HTML Tag CSS 여러가지 모양 만들기 LynX 2018-02-08 772
354 Linux wkhtmltopdf wkhtmltoimage install LynX 2018-01-31 602
353 APM LZ4_LIBS Not Found (CentOS7, MariaDB 10.1.29) LynX 2018-01-03 485
352 APM mysql ./configure LynX 2017-12-15 805
351 APM PHP-7.2.0 LynX 2017-12-12 3157
350 Linux libiconv LynX 2017-12-08 558

XE Login