조건문 가능 할까요 ?
본문
<?php if($bo_table == 'test'){
include_once(G5_PATH.'/sub/test.php');
}
?>
현재 test 접속시 test.php 가 절 적용 되어지고 있습니다.
분류 사용시 분류별로 페이지를 include 될도록 하고 싶습니다.
예)
<?php if($bo_table == 'test&sca=서울'){
include_once(G5_PATH.'/sub/test.php');
}
?>
답변 2
<?php if($bo_table == 'test' and $sca=='서울'){
include_once(G5_PATH.'/sub/test.php');
}
?>
&을 두 개 && 해주시면 됩니다.
그리고 분류별로 하실거면
if( $bo_table == "test") {
if( $sca == "카테고리" ) {
}elseif( $sca == "카테고리2") {
}
}
식으로 하시면 될거 같습니다.
답변을 작성하시기 전에 로그인 해주세요.