세자리수 콤마 찍는 방법
본문
아래 소스는 그누보드 회원 포인트를 가져와서
화면에 표시해주는 소스입니다
파일명 testquery.php root 위치에 올렸습니다.
http://"localhost/testquery.php?ID=admin
인터넷 주소창에 위와 같이 적어서 불러오면
122500 이런식으로 나옵니다
이걸 125,000 처럼 나오게 하고 싶습니다..
<?php
$con=mysqli_connect("localhost","sun7684","qwer1234","sun7684");
if (mysqli_connect_errno($con))
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$ID = $_GET['ID'];
$result = mysqli_query($con,"SELECT mb_point FROM g5_member where mb_id='$ID'");
$row = mysqli_fetch_array($result);
$data = $row[0];
if($data){
echo $data;
}
mysqli_close($con);
?>
답변을 작성하시기 전에 로그인 해주세요.