I want to concatenate in the middle of an echo to write an if statement, is this possible? Here is what I have.
echo \"
Instead of messy inline concatenations, might I suggest getting cozy with printf()?
$format = 'Home '; printf($format, ($_GET['p'] == 'home') ? 'active' : '');