home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 June / ENTER.ISO / files / xampp-win32-1.4.5-installer.exe / xampp / auth_container_db_options.php < prev    next >
Encoding:
PHP Script  |  2004-03-24  |  585 b   |  22 lines

  1. <?php
  2.  
  3. /*
  4.         $this->options['table']       = "auth";
  5.         $this->options['usernamecol'] = "username";
  6.         $this->options['passwordcol'] = "password";
  7.         $this->options['dsn']         = "";
  8.         $this->options['db_fields']   = "";
  9.         $this->options['cryptType']   = "md5";
  10. */
  11. $options = array(
  12.     'dsn'=>'pgsql://yavo:@localhost/projects',
  13.     'table'=>'users',
  14.     'usernamecol'=>'userlogin',
  15.     'passwordcol'=>'userpassword',
  16.     'db_fields'=>'*'
  17. );
  18.  
  19. $extra_options['username'] = 'test_user';
  20. $extra_options['passwd'] = 'test_user';
  21.  
  22. ?>