Skip to content

Instantly share code, notes, and snippets.

@xombra
Created April 27, 2014 02:15
Show Gist options
  • Save xombra/11336142 to your computer and use it in GitHub Desktop.
Save xombra/11336142 to your computer and use it in GitHub Desktop.
Para mostrar publicidad de Google
function PUB_GOOGLE($google_ad_client,$google_ad_slot,$google_ad_width,$google_ad_height)
{
?>
<script async type="text/javascript">
google_ad_client = "<?php echo $google_ad_client; ?>";
google_ad_slot = "<?php echo $google_ad_slot; ?>";
google_ad_width = <?php echo $google_ad_width; ?>;
google_ad_height = <?php echo $google_ad_height; ?>;
</script>
<script async type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<?php
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment