I recently saw a thresd somewhere regarding changing the format of the ads. Most sites here have a nice one line text setup with pipes etc. seperating them. Can someone please point me in the right direcrtion? Thanks Larry
When outputting the ads, you could use the following PHP code: echo implode (' | ', $ad_network); PHP:
Thank you. Exactly where do I put it, and do I replace anything? And how do I use it to show 5 ads? May I suggest adding your reply to the FAQ. Thanks Larry
after including ad_network.php just do the echo. What Shawn offered will output all 5 ads. if you want fewer, try echo "{$ad_network[0]} | {$ad_network[1]} | {$ad_network[2]}"; PHP: etc.