본문 바로가기
Android

[Android/Java] Mysql, php연결, json형식으로 출력

by noddu 2022. 1. 21.
728x90
반응형

 

 

mysql cmd와 Workbench를 이용해 User테이블과 test용 user한명의 정보를 넣어줬다

 

 

 


 

<?php

$con = mysqli_connect('localhost', 'root', 'fpem3309', 'study');

//var_dump($con);

mysqli_set_charset($con, "utf8");

$res = mysqli_query($con, "select * from User");
$result = array();

while ($row = mysqli_fetch_array($res)) {
    array_push($result, array(
        'userId' => $row[0], 'userEmail' => $row[1], 'userPassword' => $row[2],
        'userName' => $row[3], 'userBirth' => $row[4]
    ));
}

echo json_encode(array("result" => $result));

mysqli_close($con);

 

 

C:\sampp\htdoc 경로에서 connect.php 파일을 만들고 위와같이 작성!!

 

mysql_connect( 호스트 , 아이디 , 비밀번호 , 데이터베이스명 );

 

 


 

브라우저에서 확인해보니 데이터베이스에 넣었던 정보가 json형식으로 잘 출력된다

반응형