문의드립니다.
안녕하세요?
<?php
function board_count($bo_table){
$Row = sql_fetch(" select bo_count_write from g4_board where bo_table = '".$bo_table."' ");
return $Row['bo_count_write'];
}
echo board_count('notice');
?>
특정 게시판 게시물 뽑기 소스입니다.
예>
임시게시판 1 총 게시글: <?php
function board_count($bo_table){
$Row = sql_fetch(" select bo_count_write from g4_board where bo_table = '".$bo_table."' ");
return $Row['bo_count_write'];
}
echo board_count('B1');
?>
임시게시판 2 총 게시글: <?php
function board_count($bo_table){
$Row = sql_fetch(" select bo_count_write from g4_board where bo_table = '".$bo_table."' ");
return $Row['bo_count_write'];
}
echo board_count('B2');
?>
이런식으로 페이지에 넣으니까 에러 생기네요... 1개 적용하면 되는데.. 위에처럼 두개 게시물을
뽑을려니 에러가 .... 생겨요..
방법 없을까요?
<?php
function board_count($bo_table){
$Row = sql_fetch(" select bo_count_write from g4_board where bo_table = '".$bo_table."' ");
return $Row['bo_count_write'];
}
echo board_count('notice');
?>
특정 게시판 게시물 뽑기 소스입니다.
예>
임시게시판 1 총 게시글: <?php
function board_count($bo_table){
$Row = sql_fetch(" select bo_count_write from g4_board where bo_table = '".$bo_table."' ");
return $Row['bo_count_write'];
}
echo board_count('B1');
?>
임시게시판 2 총 게시글: <?php
function board_count($bo_table){
$Row = sql_fetch(" select bo_count_write from g4_board where bo_table = '".$bo_table."' ");
return $Row['bo_count_write'];
}
echo board_count('B2');
?>
이런식으로 페이지에 넣으니까 에러 생기네요... 1개 적용하면 되는데.. 위에처럼 두개 게시물을
뽑을려니 에러가 .... 생겨요..
방법 없을까요?
|
댓글을 작성하시려면 로그인이 필요합니다.
로그인
댓글 5개
<?php
function board_count($bo_table){
$Row = sql_fetch(" select bo_count_write from g4_board where bo_table = '".$bo_table."' ");
return $Row['bo_count_write'];
}
?>
이렇게만 해주시고.. 원하는 위치에 아래처럼
임시게시판 1 총 게시글: <? echo board_count('B1'); ?>
임시게시판 2 총 게시글: <? echo board_count('B2'); ?>