This statement works fine as it is
echo '<p>'.$query_row['name'].'</p>';
But how would it be possible to turn '<p>'.$query_row['name'].'</p>' into a variable that could be called back by a print or echo statement ?
A not working example
$myvar = '<p>'.$query_row['name'].'</p>';
echo $myvar;
Does anyone know how this is possible?