This is something that i wrote about month ago.
it generates random facebook IDs, that you can use with facebook blaster pro. The algorithm is 100% random, and percent of real IDs is less than 10.
Sorry for bad english, ask if you want to know more
it generates random facebook IDs, that you can use with facebook blaster pro. The algorithm is 100% random, and percent of real IDs is less than 10.
Sorry for bad english, ask if you want to know more
PHP:
<form action="fbidgen.php" method="POST">
<input type="text" name="number" value="10" />
<input type="submit" name="generated" value="Generate" />
</form>
<p />
<?php
if(isset ($_POST['number'])){
$number = $_POST['number'];
}else{
$number = 0;
}
$idlist = "ids.txt";
$fbidfile = fopen($idlist, 'w') or die("can't open file");
if(isset($_POST['generated'])){
$r_number = 0;
while($r_number<$number){
$fbidfile = fopen($idlist, 'a') or die("can't open file");
$rand = rand().(rand()*9);
$row_id = "10000".substr($rand, 0, 10)."
";
fwrite($fbidfile, $row_id);
fclose($fbidfile);
$r_number++;
}
echo "<a href='".$idlist."'>".$idlist."</a> generated with ".$number." id's";
}
?>