hi friends can you tel me what code i add in my php site when user open ny link in my site like dwnload file here then my admobs ads pop-up open automatic plz help me !
put in your link a javascript function like <a href="link" onclick="somefunc();">download file here</a> or jquery: <a href="link" onclick="somefunc();" class="dl">download file here</a> $("a.dl").click(function() { somefunc() ; }); function somefunc() { // some interesting code here... } Code (markup):