Recent content by bbowser

  1. B

    Need Huge amounts of iframe traffic

    LikesTM, PM me your skype id. I would like to try your traffic out.
  2. B

    Double Meta Refresh and redirects

    also here is a script that will tell you the ua of the browser you are using. <?php $agentToBlock = $_SERVER['HTTP_USER_AGENT']; // this will tell you the agent you want to block echo $agentToBlock; ?>
  3. B

    Double Meta Refresh and redirects

    <?php $agent = $_SERVER['HTTP_USER_AGENT']; // Access what browser they are using if (preg_match("/\bMSIE\b/i", $agent)) { echo 'You are using IE, you can pass.'; } else if (preg_match("/\bFirefox\b/i", $agent)) { echo 'You are using Firefox, goodbye.'; exit(); // exit the script...
  4. B

    HELP ME PLEASE! How to iframe many frames in the same page

    you can use div layers, i am having a similar problem, well kinda anyone on here a pro at iframe coding? Im sure i am missing some codes. I have ads under a image using a iframe. If i put the ads on top of the image you can click them, but when i but them underneath the photo you cant...
Back
Top