NEW METHOD that makes Blackhat Automation 100% MORE EFFECTIVE

twmas52712

Junior Member
Joined
Jun 17, 2009
Messages
140
Reaction score
27
I have developed this code to help all of you who are attempting to create automation tools:

<?php
$html = file_get_contents('PAGE_YOU_ARE_ABOUT_TO_POST_TO');
$pattern='/THE_LINK_YOU_ARE_ABOUT_TO_POST/';
preg_match($pattern,$html,$match);
if($match[0]!='')exit();
?>

I spent forever on this, but I'm giving it to you FOR FREE, so you can improve your code. Don't tell your friends. This is a super secret method!
 
well thanks for this but why did u spend forever on this? its not very hard to figure this out
 
I dont know much php - can anyone say what this does for me?
Cheers
 
This script checks if a website on which you want to post to already has a link to your website, that's all. I don't know how you spent forever on this as this is a code someone can write in half a minute ;) And it's obviously not a new method.
 
Maybe forever in his country lasts shorter than in other countries. :p
Thnx for share, though, its sweet automated check concept.
Maybe if you extend it with posting feature, it would be cool :)
 
If someone knows php he will know his way into making his own code and if he doesn't know php he won't be able to even adjust this code to his own need so?
 
Back
Top