in reply to Re: Way to insert some ad code
in thread Way to insert some ad code

Thanks so much!! I used this code but then it was printing the ads every 3 headlines. I changed this...
$count++; # umm...err...count if ($count > 2) {
to this...
$count++; # umm...err...count if ($count == 2) {
Then I reset the counter afterwards from

$count = 0 to $count = 4.

Thanks a bunch!