Advertisement
Guest User

BenO

a guest
Nov 14th, 2008
445
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. include_once("path/to/arc/ARC2.php");
  2.  
  3. $config = array(
  4. /* db */
  5. 'db_name' => 'my_db',
  6. 'db_user' => 'user',
  7. 'db_pwd' => 'secret',
  8. /* store */
  9. 'store_name' => 'arc_tests',
  10. );
  11. $store = ARC2::getStore($config);
  12. if (!$store->isSetUp()) {
  13. $store->setUp();
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement