On the setup screen there is a place to choose what you want to separate ads with. You could put: " - " (without quotes).
In the adnetwork.php file look for this line $ad_network = implode ('<br>', $ad_network); Change it to something like $ad_network = implode (' - ', $ad_network);
<?php ini_set ("include_path", ini_get ("include_path") . ':../:../../:../../../:../../../../'); include ('ad_network_186.php'); echo "$ad_network[0] - $ad_network[1] - $ad_network[2] - $ad_network[3] - $ad_network[4]"; ?> Code (markup): That should work
I have picked the "-". The ads or like this ad-ad. I would like the ads to look like ad - ad1 - a2 Thanks for your help
THats because you didnt put a space in between. You should put " - " instead of "-" Without the quotes of course