Skip to content

Instantly share code, notes, and snippets.

View ruslanverbelchuk's full-sized avatar

Ruslan Verbelchuk ruslanverbelchuk

View GitHub Profile
@ruslanverbelchuk
ruslanverbelchuk / MongoDBIntroduction.php
Created December 17, 2012 21:45 — forked from anonymous/MongoDBIntroduction.php
Introduction to MongoDB
<?php
if (class_exists('Mongo')){echo "MongoDB is installed<br>";}else{die(" MongoDB is not installed<br>");}
//echo extension_loaded("mongo") ? "loaded\n" : "not loaded\n";
//print_r(get_loaded_extensions());
try {
// open connection to MongoDB server
$conn = new Mongo('localhost');
// access database
$db = $conn->workout;