To add adsense code on your PHPBB3.x forum you have to edit template file. For detail how to edit template file within your Admin control panel please read http://ramui.com/phpbb/add-sidebar-in-phpbb3-template.html.
<div class="postbody"> {postrow.MESSAGE}
<table style="width: 100%; margin: 10px 0 ;"><tr><td style="text-align: center;">
<!--your Adsense code here -->
</td></tr></table>
</div>
Replace the text "<!--your Adsense code here -->" with your adsense code. Please do not forget to save the changes you have made.
If you like to add adsense code after first or original post then you have to enable PHP code in your template file.
To do this,
Now open file "viewtopic_body.html." Find string
<div class="postbody">{postrow.MESSAGE}</div>
Replace that string by the followings.
<div class="postbody">{postrow.MESSAGE}
<!-- PHP -->
static $adsense=0;
$adsense++;
$adsense_max=1; //no. of adsense block.
if($adsense<=$adsense_max){
<!-- ENDPHP -->
<table style="width:100%; margin:10px 0;"><tr><td style="text-align:center;">
<!%u2014your Adsense code here -->
</td></tr></table>
<!-- PHP -->}<!-- ENDPHP -->
</div>
Please do not forget to save the changes you have made.