Here is what I browse to on all my bots.
http://www.ubottutorials.com/complete.php
I also add another variable with each bot so I can track where it comes from. For example my Facebook Friends Adder bots URL looks like.
http://www.ubottutorials.com/complete.php?from=facebookfriends
This is just for future development so I can specifically redirect to certain sites depending on what bot.
My complete.php code looks like below
<?
$site = rand(1, 3);
switch ($site)
{
case 1:
?>
<meta http-equiv="refresh" content="3;url=http://www.ubottutorials.com/articlebot/">
<?
break;
case 2:
?>
<meta http-equiv="refresh" content="3;url=http://www.ubottutorials.com/videobot/">
<?
break;
case 3:
?>
<meta http-equiv="refresh" content="3;url=http://www.ubottutorials.com/blogbot/">
<?
break;
}
?>
If you don't understand PHP here is a brief lesson if you wanted to use this method for promoting more sites or UBot Studio.
$site = rand(1, 3);
This saves a random number between 1 and 3 in the variable $site. You enter the minimum and maximum numbers that you want to get a random number for.
switch ($site)
This function basically takes whatever number was selected randomly and does the switch function that will run the code.
case 2:
The Case is = to whatever number was passed in the switch. So if number 2 was randomly selected then it will be running case 2 until it hits a break.
<meta http-equiv="refresh" content="3;url=http://www.ubottutorials.com/videobot/">
This is a meta refresh. The number 3 is how many seconds after the page is loaded it will redirect. The url= is obviously where it will go.
Like I said you can use this for anything you can think of. Redirecting randomly to different affiliate sites is a good idea since your cookie will be dropped. This is a ton more effective than any banner or affiliate link because of this.

Sign In
Register
Help


MultiQuote





