Interpolating in a here document : here document « String « PHP
- PHP
- String
- here document
Interpolating in a here document
<?
$page_title = 'Menu';
$meat = 'pork';
$vegetable = 'vvv';
print <<<MENU
<html>
<head><title>$page_title</title></head>
<body>
<ul>
<li> $meat
<li> $meat
<li> $meat with $vegetable
</ul>
</body>
</html>
MENU;
?>
Related examples in the same category