묻고답하기
확장변수에서 전화번호 출력시 오류
2018.04.06 14:16
안녕하세요. 하루하루 질답게시판에서 많이 공부하고있습니다.
회원목록에서 이름과 전화번호를 추줄하여 sms를 발송할려고 하고있습니다만..
<?php
$info = array(
"host" => "localhost",
"user" => "#####",
"pass" => "#####",
"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]"])->phone;
$temp = explode("|@|", $temp);
echo "<td>".$temp[0]."-".$temp[1]."-".$temp[2]."</td>";
}
else echo "<td>".$data["$field[$i]"]."</td>";
}
echo"</tr>";
}
?>
</table>
</body>
</html>
요로코롬 소스를 검색해서 받아 지정하고 php로 저장하여 돌렸는데요
전화번호 부분이 --로 표기가됩니다.
회원가입때 기입한 확장변수를 입력하였는데 --가 표싣시되는 이유는 무엇인지 아무리 짱구를 돌려봐도
잘모르겠습니다;;;
혹시 이유를 아시는분이있으시다면 조언 부탁드리겠습니다. 감사합니다.
최신 xe에서는 array로 바뀌었습니다