묻고답하기

엑셀파일로 변환한 후에도 콤마(,) 표시도 나타나고

콤마 뒷부분도 잘리지 않고 보이게 하려면 어떻게 해야 할지요?

str_replace 함수나 다른 방법이 혹시 있을까요?

 

게시판 내용의 엑셀파일 변환부분은 DB불러 오는 부분 제외하고 다음과 같은 형식이거든요..

$getFields = array("title","regdate","content"); //출력원하는 칼럼을 배열로 입력

 

header("Content-type: application/vnd.ms-excel");

header("Content-Disposition: attachment; filename=doc_".date('Ymd').".xls");

 

$con = mysql_connect($info[host], $info[user], $info[pass]) || die(mysql_error());

mysql_query("set names utf8");

$con_db = mysql_select_db($info[db]) || die(mysql_error());

?>

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html lang="EN" dir="ltr" xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv=Content-Type content=text/html; charset="utf-8">

</head>

<body>

<table border=1>

<tr align=center>

 

<?php

//제목 불러오기

$fields = mysql_list_fields("$info[db]", "$info[table]");

$columns = mysql_num_fields($fields);

 

for( $i=0 ; $i<$columns ; $i++ )

{

    $field[$i]=mysql_field_name($fields, $i);

    if( in_array($field[$i], $getFields) ) echo "<th>".$field[$i]."</th>";

}

$result = mysql_query("select  var_name from xe_document_extra_keys where module_srl = $info[module_srl]");                  

while( $data = mysql_fetch_array($result) )

{                          

    echo "<th>".htmlspecialchars($data[var_name])."</th>";

}  

 

echo"</tr>";             

 

 

//데이터 불러오기

$result = mysql_query("select * from $info[table] where module_srl = $info[module_srl]");

while( $data = mysql_fetch_assoc($result) )

{

    echo"<tr>";

    foreach( $data as $key => $val )

    {

        if( in_array($key, $getFields) ) 

        {

            if ($key ==  'regdate') { 

//                echo "<td   style='mso-number-format:\"0_ \";' >".htmlspecialchars($val)."</td>";    

 

$date = DateTime::createFromFormat("YmdHis",$val);

echo "<td>".htmlspecialchars($date->format('Y-m-d H:i:s'))."</td>";

 

            }elseif ($key ==  'content'){                

                //echo "<td>".$val."</td>";     

                echo "<td >".htmlspecialchars(strip_tags(str_replace(" ","",$val)))."</td>";

            }else {

                echo "<td>".htmlspecialchars($val)."</td>";

            }  

        }

 

        if ($key ==  'document_srl'){           

            $d_srl=$val;

        }

 

    }

                $query=mysql_query("select eid from xe_document_extra_keys where module_srl = $info[module_srl]");      

                while($extra_title=mysql_fetch_array($query))

                {      

                    echo"<td>";

 

                    $egetFields = array("value","eid");  

                    $extra_result = mysql_query("select * from xe_document_extra_vars where document_srl = $d_srl");  

                    while( $edata = mysql_fetch_assoc($extra_result) )

                    {

                        $extra_str="";

                        foreach( $edata as $key => $val ){

                            if( in_array($key, $egetFields) ){                          

                                $extra_str = $val.",".$extra_str;

                            }

                        }

 

                        $extra_arr=explode(",",$extra_str);                                

                        if ($extra_title[eid]==$extra_arr[0]){

 

                            if($extra_title[eid]=="contact"){  

                                echo str_replace("|@|","-",htmlspecialchars($extra_arr[1]));

}

                                elseif($extra_title[eid]=="date"){

$date = DateTime::createFromFormat("Ymd",$extra_arr[1]);

echo htmlspecialchars($date->format('Y-m-d'));

}

                            //기타 배열값들은 ',' 로 변경

                            elseif($extra_title[eid]=="mb_incomplete"||$extra_title[eid]=="mb_cs"){

                                echo str_replace("|@|",",",htmlspecialchars($extra_arr[1]));

                            }

else{

                                echo htmlspecialchars($extra_arr[1]);                     

                            }

                        }

                    }

 

                    echo"</td>";   

                }              

                /////////////////////////////////////////////////////////////////////

 

    echo"</tr>";

}

 

 

 

태그 연관 글
  1. [2016/12/30] 묻고답하기 회원 포인트를 엑셀로 받을 수 있나요? by 권만주 *2
  2. [2014/08/12] 묻고답하기 sql 에서 게시판 글 데이터를 엑셀화해서 한번에 올리려고합니다. by 모몽
  3. [2010/08/04] 묻고답하기 제로보드 게시판과 회원정보 변환방법 문의 드립니다. by 형명길
글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
없음입니다 눈내리는 js 스크립트가 홈페이지에 적용이 안됩니다  
고고싱229af 컨텐츠위젯 반응형레이아웃에서 설정문의 [5] 2017.12.15 by DoorWeb
없음입니다 첨부를 삭제하고 싶습니다 [2] file 2017.12.15 by 없음입니다
리틀빌리지 회원가입시 처음 가입하는사람이 아이디가 중지되었다고 나옵니다. [1] 2017.12.14 by 휘즈
리틀빌리지 sketchbook5 검은색 스킨적용시 본문글색깔이 검정으로 나옴 [2] 2017.12.14 by 리틀빌리지
이와이 현재 페이지가 메인 페이지 인지 아닌지 구분할 때. [2] 2017.12.14 by 이와이
thdwjdtjr 섬네일 옆에 댓글수 표시되는 방법  
안희준 [긴급]1.9.2코어 업데이트 후 사이트 백지화 현상 [4] 2017.12.13 by DoorWeb
초보의도전 DIV 안에 DIV 넣기 질문 [4] 2017.12.13 by 초보의도전
모몽 아무것도 모르는 초보가 간단한 질문좀 드립니다 ㅜㅠ file  
jsuimage 게시판 내용을 엑셀파일로 변환하니 제목에 콤마(,)가 있으면 콤마(,)부터 뒷 부분이 모두 잘려서 보이지 않습니다  
바라아 MySQL UTF-8 이모티콘 지원 애드온. PC에서만 깨집니다..  
cydog xe 홈페이지 용량을 줄이려고 하는데... [2] 2017.12.12 by sejin7940
whiterose5889 유튜부 전체화면 재생과 썸내일 생성관련 [3] file 2017.12.12 by whiterose5889
저스틴그레이트 apache2.4 와 php7.0 설치 후 오류문의(화면있음) [1] file 2017.12.12 by 저스틴그레이트
whiterose5889 본문과 메뉴사이 간격 조정 + 동영상 전체화면 재생 + 위젯 정열 [4] file 2017.12.12 by whiterose5889
소망 http로 연결되어야할 페이지가 https로 연결되어 페이지가 열리지 않습니다. [3] 2017.12.12 by DoorWeb
허허길드짱 웹표준검사시 오류에 대해서 아시는분 있으실까요? [1] 2017.12.11 by DoorWeb
우랑탕탕이 content 확장 위젯2 출력문제 [2] 2017.12.11 by DoorWeb
병아리 메뉴와 아래이미지 간격사이... [5] file 2017.12.11 by DoorWeb
끄니 방명록 모듈 작동하는 것 없나요? [1] 2017.12.11 by sejin7940
씽씽씽 네이버 웹마스터에 나오는 사이트 제목과 설명을 어디서 수정하나요? [3] 2017.12.11 by sejin7940
천풍비 맥에서 ftp 접근 이후 웹페이지가 통째로 깨져버렸습니다. file  
dualsrj**** Mac에서 MAMP으로 xe 설치시 다음과 같은 오류가 발생합니다. [1] file 2017.12.10 by HowtoXE
scone 랜덤이미지 출력후 결과 값을 고정하는 법 [1] 2017.12.10 by HowtoXE
visionpolar 홈페이지에 내용이 안 뜹니다. [1] 2017.12.10 by HowtoXE
이두바끈 사용자 데이터 통계 [1] 2017.12.10 by HowtoXE
문화사랑 1.9.0업데이트 후 홈페이지 안열려요(급함) [4] file 2017.12.10 by 휘즈
GIO php5.5->7.0 mysql->mariadb 로 변경했는데 아무것도 안나와요ㅜ,ㅜ [1] 2017.12.10 by 휘즈
혁똥 첨부파일을 포함해서 등록누르면 [1] 2017.12.10 by 혁똥