please help i want this code.. i searching for Php code to make Rotation of ads between the two accounts in Adsense something give 50% or 60% to one of these accounts .. so .. can any one help me ..
sorry bro i dont know and i think you dont do it becoz adsense will ban you if u have a little mistake both a/c will ban so be carefull
me and my friend have site and we need php code to make Rotation between our adsense account .. EX 50/50) sorry for my En ..
i think you should read the TAC of Google adsense cause i doubt about its allowance. i also think its not only a simple code.
this thing isn't recommended.. did you ask google about this first if this is allowed? there are multiple ways to do it in php you can display the ad in random basis or save the flag value in database to alternate the ad display for random its something like if(rand(1,2)==1) echo "...ad code 1" ; else echo ".... ad code 2.."; for the other method: /*get the database value of $flag here */ if($flag == 1){ echo "...ad code 1" ; $flag = 2; } else { echo ".... ad code 2.."; $flag = 1; } /* ...save flag here */