I'm trying to include my AdSense code inside a variable like this:
$ad = include_once('../adsense/ad.php');
echo $ad;
In ad.php I'm doing this:
<?php
return '<script>...</script>';
?>
It's showing my AsSense ad but only once. After that, it's outputting 1. Am I missing something here?