Lines Matching refs:user
15 /* we need to check, if the server allows anonymous login (empty user) */
51 if (!$link = mysqli_connect($host, $user, $passwd, $db, $port, $socket))
52 …printf("[008] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
53 $host, $user, $db, $port, $socket);
57 …if ($link = mysqli_connect($host, $user . 'unknown_really', $passwd . 'non_empty', $db, $port, $so…
58 …printf("[009] Can connect to the server using host=%s, user=%s, passwd=***non_empty, dbname=%s, po…
59 $host, $user . 'unknown_really', $db, $port, $socket);
64 // Run the following tests without an anoynmous MySQL user and use a password for the test user!
66 if (!is_object($link = mysqli_connect($host, $user, $passwd, $db, $port))) {
77 if (!is_object($link = mysqli_connect($host, $user, $passwd, $db))) {
88 if (!is_object($link = mysqli_connect($host, $user))) {
98 ini_set('mysqli.default_user', $user);
147 Warning: mysqli_connect(): (%s/%d): Access denied for user '%s'@'%s' (using password: YES) in %s on…