[다운로드]https://www.mongodb.com/download-center#community [튜토리얼]https://www.tutorialspoint.com/mongodb/index.htm [몽고DB용 PHP 드라이버]https://secure.php.net/manual/en/book.mongo.php [Mapping Chart]SQL to Mongo콘솔용> https://docs.mongodb.com/manual/reference/sql-comparison/PHP용> http://php.net/manual/kr/mongo.sqltomongo.php SQL to Aggregation콘솔용> https://docs.mongodb.com/manual/reference/sql-aggregation-c..
[몽고DB 접속]$m = new MongoClient('mongodb://[IP주소]:[포트번호]', array("username"=>"[사용자계정]", "password"=>"[패스워드]", "db"=>"[권한있는데이터베이스]"); -> 내 컴퓨터가 아닌 별도의 서버에 설치한 몽고DB에는 위와 같은 방법으로 접속할 수 있다. 따로 몽고DB가 설치된 경로를 include 또는 require 하지 않아도 된다.-> 구글링을 해보면 접속할 때 new Mongo() 를 이용해서 하는 방법도 나오는데, 현재(2017.02.11)는 그렇게 하면 오류 뙇!! MongoClient 를 이용하라고 친절하게 오류가 뜬다. * php 에서 오류를 확인하는 방법? ini_set('display_errors', '1'); p..