okayy... i read somewhere here that google disallows displaying ads on pages that have forms, right ??
To block certain pages from displaying ads for eg. newreply.php, open newreply.php and look for
PHP Code:
define('THIS_SCRIPT', 'newreply');
newreply is what we are looking for.
Wrap your ad code like this in the conditional:-
Code:
if condition="!in_array(THIS_SCRIPT, array('newreply', 'register'))">
YOUR
AD CODE
HERE
</if>
I hope this is what you are looking for !!