I have the updated code working fine on most of my pages. I have a folder that is dynamically creating pages through php and my database. I was able to get ads to display properly on those before the update by adding this to the bottom of the template that the php pages used. <? include ('../ad_network.php'); echo '<div class="ads"><a href="http://www.digitalpoint.com/tools/ad-network/?s=1905" rel="nofollow">Sponsored Ads</a>>>'.implode(" ", $ad_network).' <a href="http://www.elistingpros.com/">Real Estate News</a></div>'; ?> </body> </html> PHP: With the update, it no longer diplays the ads anymore. I'm not very code with coding. A friend wrote the code above for me.
Get rid of the implode... echo '<div class="ads"><a href="http://www.digitalpoint.com/tools/ad-network/?s=1905" rel="nofollow">Sponsored Ads</a>>>'.$ad_network.' <a href="http://www.elistingpros.com/">Real Estate News</a></div>'; PHP: