view['file'] 질문있습니다
본문
view.skin안에서 말고 bbs폴더아래에다가 파일불러올라고 하는데요
$select_sql = "select * from g5_board_file where wr_id='".$_GET['wr_id']."' and bo_table='".$_GET['bo_table']."'";
를 이용해서 쿼리는 짰는데 파일을 나타나게 할라면 어떻게 해야할지모르겠네요 도와주세요!
!-->답변 3
<?
while($row = sql_fetch_array($select_sql)){
?>
<img src="<?=G5_DATA_URL?>/file/<?=$bo_table?>/<?=$row[bf_file]?>">
<?}?>
그리고 $_GET['wr_id'] // $_GET['bo_table'] <-- 굳이 이렇게 사용할 필요 없습니다
그냥 $wr_id, $bo_table 하면 되도록 되어있습니다
/bbs/a.php 라면..
include "./a.php";
로 불러오면 됩니다.
그누보드에 파일 불러오는 함수가 있습니다.
$file = get_file($bo_table, $wr_id);
<img src="<?=$file['path']?>/<?=$file['file']?>">
<참조> /lib/common.lib.php 281줄
답변을 작성하시기 전에 로그인 해주세요.