외부페이지에서 그누보드게시판에 게시글등록하기
//$newpost[bo_table] : 테이블이름//$newpost[ca_name] : 카테고리이름//$newpost[wr_subject] : 제목//$newpost[wr_content] : 내용//$newpost[mb_id] : 글쓴이// order($newpost); 라고 실행시키면 글이 해당 게시판에 올라갑니다.function order($newpost) { global $g4; // 입력할 bo_table이 존재하는지 확인 if(!strlen($newpost[bo_table])) return "error: bo_table 값이 지정되지 않았습니다."; if(!$bo = sql_fetch("select * from `$g4[board_table]` where bo_table=..
2010.11.06