Recent content by b4br 514h

  1. B

    [HOW-TO] Endless resource of stupid girls

    damnnn bro you must be bored! or need seks badddly :D
  2. B

    get the referring url title and write to LP > HELP

    Bro you got your PM box full... I PM-ed you like an hour ago.. but I think you didn't receive it... so here we go again: I can to do this job for you but first I need to see your page/code. I'll do it in exchange for something else, not money necessarily, what can you offer me? design, blasts...
  3. B

    get the referring url title and write to LP > HELP

    My code only is part (the important part), of the script your gonna need to accomplish this. I can't post you the complete code since I normally would get paid to do this you know.. The method I have given you is completely automated, no manual work needed. And trust me, automated is Almost...
  4. B

    get the referring url title and write to LP > HELP

    OK, next thing you can try when you don't get a referer URL is, you could check for cookies. For example, if you search on Google "searchkeyword" and click on a link, G stores your search in a cookie in this format: Now you could extract the "utmctr" parameter which is "searchkeyword" If...
  5. B

    get the referring url title and write to LP > HELP

    You kneed the code I gave you for what your trying to achieve. It's pretty simple script actually, just copy this in a blank .php file and replace [dot] with "." in the variable $url_to_load, this is because I cant post any links in my comments. If you look closely, the url is the same as this...
  6. B

    get the referring url title and write to LP > HELP

    OK maybe this method... If you've got the url from where your visitor comes, you can load the html as plain text via PHP (file_get_contents) and get contents of the "title" tag? You could use the same code as before with a slight modification: You could also check the page's meta description...
  7. B

    get the referring url title and write to LP > HELP

    One way would be checking the ref. URL for the query string.. For example a search in google for "loose weight fast" and clicking on a link will give you this referer: You could use the part from "q=" to the following "&" sign, the php for that would be: If this helped you Rep +1 and thanks...
  8. B

    Do you have an Apple Developer License & an Android Publisher Account?

    Exactly. It's just 25 $ for Android, start there and when you got 100$ for iPhone go for it
  9. B

    Detect Googlebot, Android, iPhone/iPad using javascript [client-side] (newbies)

    Mars your welcome bro. There are some tips I want to give you: 1: Don't Ever give up! There is a nice thread here called "BlackHat Sucess: Never give up!" read that and also a comment about Edison saying "I never failed, it's just that making the light bulb was a 99-step process." Keep that in...
  10. B

    Introduce myself

    As I said, you ain't no BHatter... welcome to the forum bro :)
  11. B

    Detect Googlebot, Android, iPhone/iPad using javascript [client-side] (newbies)

    Any type of cloaking is easy to detect, some easier than others, but sooner or later they'll find out anyway. If your were a BHatter you would know this by now. As I said in the OP, you should also clock server-side.
  12. B

    Detect Googlebot, Android, iPhone/iPad using javascript [client-side] (newbies)

    I don't care what you prefer, this post was not just for you bro Maybe others prefer or Need to cloack client-side...
  13. B

    Detect Googlebot, Android, iPhone/iPad using javascript [client-side] (newbies)

    Here's a little script to help newbies with detecting what type of visitor they are having. Detect Googlebot: var isGoogle = navigator.userAgent.toLowerCase().indexOf('googlebot') > 0; Detect Android: var isAndroid = navigator.userAgent.toLowerCase().indexOf('android') > 0; Detect iPhone...
Back
Top