hi i'm using xfilesharing script in this site www.maskshare.com iwant to add googleadsense in that place
If you want to add Google Adsense in your website, then first of all you need to apply for an account to mange your ads. You can apply for the same on http://adsense.google.com and once you are accepted, just paste provided html code in each webpages of your site where you wish to display the ads.
add the following after </title> <style type="text/css"> #sidebar1 { float: left; /* this element must precede in the source order any element you would like it be positioned next to */ width: 22%; /* since this element is floated, a width must be given */ background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */ padding: 15px 0; /* top and bottom padding create visual space within this div */ } #sidebar2 { float: right; /* this element must precede in the source order any element you would like it be positioned next to */ width: 23%; /* since this element is floated, a width must be given */ background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */ padding: 15px 0; /* top and bottom padding create visual space within this div */ } </style> Code (markup): after that, add in the body, after <body> <div id="sidebar1"> <h3>Sidebar1 </h3> Here you can add adsense pub <!-- end #sidebar1 --></div> <div id="sidebar2"> <h3>Advertising </h3> Here you can add adsense pub <!-- end #sidebar2 --></div> Code (markup):
add those codes in every page of your script, or you can create another php file , let's say call it slidebars.php, and add them with include, to every page