<?php
$con = mysql_connect("localhost", "아이디", "비밀번호");
// 쿼리 전에 utf8로 셋팅
mysql_query("set names utf8",$con);
if (!$con)
{
die('연결안됨: '.mysql_error());
} else {
// 해당 DB select
mysql_select_db("bonbebe",$con);
}
$return_array = array();
// sql 쿼리문 작성
$sql = "SELECT * FROM `userinfo` ";
$result = mysql_query($sql);
// json_encode 함수를 쓰면 Web에서 한글이 제데로 표시가 안됨
$outp = "[";
while($rs = mysql_fetch_array($result, MYSQL_ASSOC)) {
if ($outp != "[") {$outp .= ",";}
$outp .= '{"id":"' . $rs["id"] . '",';
$outp .= '"pw":"' . $rs["pw"] . '",';
$outp .= '"country":"'. $rs["country"] . '"}';
}
$outp .="]";
mysql_close($con);
echo($outp);
?>
'개발지식창고 > Web_PHP' 카테고리의 다른 글
Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly. (0) | 2015.09.27 |
---|---|
php push 서버 예제1 (0) | 2015.08.11 |
[tip]Cannot modify header information - headers already sent by 오류 (0) | 2014.08.25 |
PHP 5.xx 버전 폼에 변수값 전달이 되지 않을때 (0) | 2014.08.22 |
PHP 강좌 링크 (0) | 2014.08.21 |