I'm having a php noob moment, im looking for a smaller more compact solution to concatenate the "$content" variable which is being echoed as the main content in an external "layout.php" file.
<?php
require_once("Controller/comment_control.php");
$comment = new COMMENT();
$title = "Customer Reviews";
$content = '<div class="comment_box">' ;
$content .= $comment->getComments();
$content .= '</div>';
any help condensing this ugly mess is appreciated.