Skip to content

Instantly share code, notes, and snippets.

@romulo1984
Created January 26, 2013 17:37
Show Gist options
  • Save romulo1984/4643423 to your computer and use it in GitHub Desktop.
Save romulo1984/4643423 to your computer and use it in GitHub Desktop.
<?php
$txt['logins'] = array("a:1", "a:2", "a:3");
$txt['dados'] = array("123", "456", "789", "987", "654", "321");
for ($i = 0; $i < count($txt['logins']); ++$i){
list($usuario, $senha) = explode(":", $txt['logins'][$i]);
for($e = 0; $e < count($txt['dados']); ++$e){
echo $usuario. " -> " .$senha. " compara com :" .$txt['dados'][$e]. "<br />";
}
echo "<br />";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment