Need breaks between text link ads

Discussion in 'Co-op Advertising Network' started by kokopoko, Jan 5, 2005.

  1. #1
    I've got the ads running as text links, but they are all jumbled together. I need breaks between the ads. I tried this
    echo $ad_network[0]; 
    ?>
    <Br>
    <?	echo $ad_network[1];?>
    <Br>
    <?	echo $ad_network[2];?>
    <Br>
    <?	echo $ad_network[3]; ?>
    <Br>
    <?echo $ad_network[4]; ?>
    Code (markup):
    but that didn't do a thing. Anyone have ideas?
     
    kokopoko, Jan 5, 2005 IP
  2. fryman

    fryman Kiss my rep

    Messages:
    9,604
    Likes Received:
    777
    Best Answers:
    0
    Trophy Points:
    370
    #2
    I used this

    echo "<DIV align='center'>$ad_network[0]&nbsp&nbsp $ad_network[1]&nbsp&nbsp $ad_network[2]&nbsp&nbsp $ad_network[3]&nbsp&nbsp $ad_network[4]</div>";

    It centers them and gives them some space
     
    fryman, Jan 5, 2005 IP
  3. digitalpoint

    digitalpoint Overlord of no one Staff

    Messages:
    38,334
    Likes Received:
    2,613
    Best Answers:
    462
    Trophy Points:
    710
    Digital Goods:
    29
    #3
    Try this:

    echo implode ('<br>', $ad_network);
    PHP:
     
    digitalpoint, Jan 6, 2005 IP
  4. ZeRo_CoOl

    ZeRo_CoOl Peon

    Messages:
    635
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    0
    #4
    thanks for this guys, was just what i was looking for...
     
    ZeRo_CoOl, Jan 6, 2005 IP