pconnect(127.0.0.1, 6379, 2.5, "Server1"); $redis->auth("yourlongasspasswordhere"); $playerNames = $redis->keys('PlayerData:*'); // print all UID's matching player name foreach ($playerNames as $key => $value) { $data = $redis->get($value); if (stripos($data, $search) !== false) { $key = explode(":", $value); echo "

" . $key[1] . "

" ; break; // comment out this line if you want all matches and not just the first. } } ?>