<?php>
if(true){
?>
<html>
<head>
<title>php</title>
<body>
<h1>Заголовок</h1>
</body>
</head>
</html>
<?php echo 'строка' } ?>
}
<?php
$title = 'Заголовок';
if(true){
?>
<html>
<head>
<title>php</title>
<body>
<h1><?=$title?></h1>
</body>
</head>
</html>
<?php echo 'строка'; } ?>