Building An Ad Spam Site - Part -III
Monday, March 17, 2008
Well the first and the second part have been commenced with perfectly and now the third part. It deals with the code.
The Engine :
< ?php
$content_file = "content.txt";
So this is the engine. It will generate all the unique content for you every time you use it. You can post it with the following line of code into html code .
< ?php echo $bh_real_content; ?>
If you have used PHP before you can configure it yourself or in the next post I'll tell you how to configure it into a fully automatic spam site that will generate the cash you have been dreaming of. So wait or Subscribe
Signing off,
Saurabh datta
The Engine :
< ?php
$content_file = "content.txt";
$words = split(" ", join("", file($content_file)));
srand((double) microtime()*1000000);
$bh_title = rand(4,13);
$bh_real_title = " ";
for($z=0;$z< $bh_title;$z++)
{
$index = rand(0, count($words)-1);
$array = array($bh_real_title, $words[$index]);
$bh_real_title = implode(" ", $array);
}
$length = rand(250,450);
$bh_real_content = " ";
for($i=0;$i<$length;$i++)
{
$index = rand(0, count($words)-1);
$array = array($bh_real_content, $words[$index]);
$bh_real_content = implode(" ", $array);
}
?>
So this is the engine. It will generate all the unique content for you every time you use it. You can post it with the following line of code into html code .
< ?php echo $bh_real_content; ?>
If you have used PHP before you can configure it yourself or in the next post I'll tell you how to configure it into a fully automatic spam site that will generate the cash you have been dreaming of. So wait or Subscribe
Signing off,
Saurabh datta
|
This entry was posted on Monday, March 17, 2008
You can follow any responses to this entry through
the RSS 2.0 feed.
You can leave a response,
or trackback from your own site.
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment