[제나플러스] 리스트에서 필드문 입력
페이지 정보
본문
if ($board[bo_1_subj] != "원본 이미지 크기" && $board[bo_2_subj] != "썸네일 이미지 크기") {
sql_query("update $g4[board_table] set bo_1_subj='원본 이미지 크기', bo_2_subj='썸네일 이미지 크기', bo_1='640', bo_2='100x100' where bo_table='$bo_table'", false);
$board = sql_fetch("select $g4[board_table] where bo_table='$bo_table'", false);
}
if (!$board[bo_1]) die("여분필드1 [원본 이미지 크기] 를 설정해주세요. (예) 640");
if (!$board[bo_2]) die("여분필드2 [썸네일 이미지 크기] 를 설정해주세요. (예) 100x100");
list($img2_width, $img2_height) = explode("x", $board[bo_2]);
if (!($img2_width && $img2_height)) $img2_width = $img2_height = 100;
추천0
댓글목록
등록된 댓글이 없습니다.