<?php
//scrape this motherfucker!
preg_match('/\<span\sclass="given\-name"\>\w+\<\/span\>/i', file_get_contents('http://www.fakenamegenerator.com/'), $fn);
preg_match('/\<span\sclass="family\-name"\>\w+\<\/span\>/i', file_get_contents('http://www.fakenamegenerator.com/'), $sn);
preg_match('/\<li\S+\<\/li\>/i', file_get_contents('http://www.fakenamegenerator.com/'), $p);
// user info
$uid = strip_tags(utf8_decode($fn[0].$sn[0]));
$pass = strip_tags(utf8_decode($p[0]));
//confirm info
echo $uid.'<br>';
echo $pass.'<br>';
?>