Your IP : 216.73.216.74


Current Path : /proc/thread-self/root/usr/local/php5.5/lib/php/test/Auth/tests/
Upload File :
Current File : //proc/thread-self/root/usr/local/php5.5/lib/php/test/Auth/tests/auth_container_db_options.php

<?php

/*
        $this->options['table']       = "auth";
        $this->options['usernamecol'] = "username";
        $this->options['passwordcol'] = "password";
        $this->options['dsn']         = "";
        $this->options['db_fields']   = "";
        $this->options['cryptType']   = "md5";
*/
$options = array(
    'dsn'=>'mysql://root:@localhost/authtest',
    'table'=>'temp',
    'usernamecol'=>'username',
    'passwordcol'=>'password',
    'cryptType'=>'md5',
    'db_fields'=>'*'
);

$extra_options['username'] = 'test_user';
$extra_options['passwd'] = 'test_user';

?>