Hello, I am just about to wrap things up with my second account for the website Website Placement . I put in this php code: <?php ini_set ("include_path", ini_get ("include_path") . ':../:../../:../../../:../../../../'); include ('ad_network.php'); echo $ad_network[0],$ad_network[1],$ad_network[2],$ad_network[3],$ad_network[4]; ?> I only show 3 ads on my site though, and want to know how to get the ads to be spaced apart a little more. Thanks for the help!
I am surprised that works. Try: <?php ini_set ("include_path", ini_get ("include_path") . ':../:../../:../../../:../../../../'); include ('ad_network.php'); echo $ad_network[0].' '.$ad_network[1].' '.$ad_network[2].' '.$ad_network[3].' '.$ad_network[4]; ?> If you need more space add a few between the ' ' ( is the symbol for a no-breaking-space).
As another example here is what I am using: echo '<a href="http://www.digitalpoint.com/tools/ad-network/?s=2822">free co-op ad network</a>: '.$ad_network[0].' | '.$ad_network[1].' | '.$ad_network[2].' | '.$ad_network[3].' | '.$ad_network[4]; Code (markup): This way if anyone sees it and signs up I will get some referrer bonus.
Does anyone know how I can change the font type and size? I don't know how to do it within the php code.
assign a css classes (dont forget these are hyperlinks) echo '<div class=\"coop\"><a href="http://www.digitalpoint.com/tools/ad-network/?s=2822">free co-op ad network</a>: '.$ad_network[0].' | '.$ad_network[1].' | '.$ad_network[2].' | '.$ad_network[3].' | '.$ad_network[4]</div>; should work M