Skip to content

Instantly share code, notes, and snippets.

@hndr91
Last active December 9, 2015 09:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hndr91/3f4d37532a0a5d0351c5 to your computer and use it in GitHub Desktop.
Save hndr91/3f4d37532a0a5d0351c5 to your computer and use it in GitHub Desktop.
slim-mongo config
<?php
//Database Constant
define('DB_NAME', 'test'); //db name
define('DB_COLLECTION','friends'); //collection name
//Return Paramater Constant
define('INSERT_COL_SUCCESS', 0);
define('INSERT_COL_FAILED', 1);
define('REMOVE_FRIEND_SUCCESS', 0);
define('REMOVE_FRIEND_FAILED', 1);
define('FRIENDS_NOT_EXISTS', 2);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment