Guest User

Untitled

a guest
May 2nd, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php
  2. $lines=explode(PHP_EOL,file_get_contents("ax.txt"));
  3. foreach($lines as $line)
  4. {
  5. $parts=explode("|",$line);
  6. $user=explode("\\",$parts[3]);
  7. print $parts[2]."@".$user[sizeof($user)-1].":".$parts[4]."</br>";
  8. }
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment