I have the following code
$content .= '
<div id="myDivID">';
include 'search.php';
$content .= '
</div>';
But the included file is on top of the page. I want the output in between myDivID. Do I have an error in the php script or does the include always put it on top of the page?
This one is correct