묻고답하기
회원데이타 엑셀로 추출시 전화번호출력 송동욱님 답변참고해서 했는데요..
2013.02.14 20:20
<?php
$info = array(
"host" => "호스트명",
"user" => "아이디",
"pass" => "비번",
"db" => "DB명",
"table" => "xe_member"
);
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=member.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($field[$i]=="extra_vars")
{
$field[$i] = "tel";
echo "<th>".$field[$i]."</th>";
$field[$i] = "extra_vars";
}
else echo "<th>".$field[$i]."</th>";
}
?>
</tr>
<?php
$result = mysql_query("select * from $info[table]");
while( $data = mysql_fetch_assoc($result) )
{
echo"<tr>";
for( $i=0 ; $i<count($field) ; $i++ )
{
if( $field[$i] == "extra_vars" )
{
$temp = unserialize($data["$field[$i]"])->전화번호확장변수명;
$temp = explode("|@|", $temp);
echo "<td>".$temp[0]."-".$temp[1]."-".$temp[2]."</td>";
}
else echo "<td>".$data["$field[$i]"]."</td>";
}
echo"</tr>";
}
?>
</table>
</body>
</html>
송동욱님 답변대로 빨간색부분을 맞게 바꾸고 했는데 전화번호만 - - 요렇게 표시되서 출력이 됩니다.
번호는 출력이 안되고 - - 이부분만 출력이 됩니다. 확장변수명은 handphone 으로 정확이 넣었는데 잘 안되네요~
어느부분이 문제 있는지 답변부탁드립니다~ㅠ 다른부분은 정확히 다 출력이 됩니다.
포인트가 부족하여 30포인트밖에 못드리는점 죄송합니다 ㅠ
송동우 님 소스 그대로 해보면 잘 출력이 됩니다.
확장변수명 을 관리자의 가입폼에 가셔서 다시 한번 확인해보세요
'입력항목 ID *' 값에 적힌 값이어야합니다. '입력항목 제목 *' 값이 아니라.. 혹시나 하고 적어둡니다 ^^;