한달이 지난 게시물은 못보게 하려고 하는데 안되네요.. > 그누3질답

그누3질답

한달이 지난 게시물은 못보게 하려고 하는데 안되네요.. 정보

한달이 지난 게시물은 못보게 하려고 하는데 안되네요..

본문

$list[$i][datetime2] = date("Y-m-d", time() - 86400 * 30); // gblist.php 에 추가한부분

// gblist.skin.php 부분
if($list[$i][datetime] >= $list[$i][datetime2]);
echo "o";
else
echo "x";

조건이 맞으면 o 또는 x 가 출력이 되야 하는데 출력이 안되네요.. 날짜는 부등호가 안먹는지요??
  • 복사

댓글 전체

gblist.php 아래줄 추가
    $list[$i][datetime2] = date("Y-m-d", time());


gblist.skin.php 기간설정추가
<?
// 기간설정날짜 계산
$wrday = strtotime($list[$i][datetime]);
$before = strtotime($list[$i][datetime2]);
$gap = $before - $wrday;
$diffday = (int)($gap / 86400);
$diffdate = 500; //일수 500일
?>
// 출력되고자 하는 부분
<?if($diffday >= $diffdate){?>
o
<?}else{?>
x
<?}?>
요렇게 하니까 되네요.. 500일이 지난 게시물은 읽기가 불가능합니다.
http://jinmoda.com/?doc=bbs/gnuboard.php&bo_table=board&page=5
© SIRSOFT
현재 페이지 제일 처음으로