The Content is generated dynamically based on the php conditions .
Sample Content With Multiple White Space ( View Source )
<title>Samsung Phones Under Rs.20000 </title>
How Title is Generating:
$conditional_title = <?php echo $brand; ?><?php echo $os; ?> Phones <?php echo ($prRange !='') ? 'under Rs.'$price' : ''; ?>
<title><?php echo $conditional_title; ?></title>
So If $os condition Fails , the content is generated with multiple white spaces , How can i trim these multiple white spaces in between the content.
Expected Output :
<title>Samsung Phones Under Rs.20000 </title>