| Quote: : |
To implement section targeting, you'll need to add a set of special HTML comment tags to your code. These tags will mark the beginning and end of whichever section(s) you'd like to emphasize or de-emphasize for ad targeting. The HTML tags to emphasize a page section take the following format: <!-- google_ad_section_start --> <!-- google_ad_section_end --> |
| Code: : |
| <?php ###Sevens Google Ads Block### if (eregi("block-Sevens_Google_Ad_Block.php",$PHP_SELF)) { Header("Location: index.php"); die(); } $content = "<!---Begin Google Ad Code--->"; $content .= "<script type=\"text/javascript\"><!--"; $content .= "google_ad_client = \"pub-3552514787475421\";"; $content .= "google_ad_width = 468;"; $content .= "google_ad_height = 60;"; $content .= "google_ad_format = \"468x60_as\";"; $content .= "google_cpa_choice = \"CAEaCPE0Qicm8BvfUAU\";"; $content .= "//-->"; $content .= "</script>"; $content .= "<script type=\"text/javascript\" src=\"http://pagead2.googlesyndication.com/pagead/show_ads.js\">"; $content .= "</script>"; $content .= "<!---End Google Ad Code--->"; ?> |