Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $lines=explode(PHP_EOL,file_get_contents("ax.txt"));
- foreach($lines as $line)
- {
- $parts=explode("|",$line);
- $user=explode("\\",$parts[3]);
- print $parts[2]."@".$user[sizeof($user)-1].":".$parts[4]."</br>";
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment