soycharliente Posted May 6, 2008 Share Posted May 6, 2008 What's the concept called when you do something like this? <?php $nav = <<<DELIMITER <li><a href="index.php" class="home">Home</a></li> <li><a href="about.php" class="about">About</a></li> <li><a href="stats.php" class="stats">Statistics</a></li> <li><a href="data.php" class="data">Data</a></li> <li><a href="login.php" class="login">Login</a></li> DELIMITER; echo $nav; ?> Link to comment https://forums.phpfreaks.com/topic/104427-solved-what-is-this-concept-called/ Share on other sites More sharing options...
Barand Posted May 6, 2008 Share Posted May 6, 2008 heredoc synatx Link to comment https://forums.phpfreaks.com/topic/104427-solved-what-is-this-concept-called/#findComment-534575 Share on other sites More sharing options...
soycharliente Posted May 6, 2008 Author Share Posted May 6, 2008 thanks! Link to comment https://forums.phpfreaks.com/topic/104427-solved-what-is-this-concept-called/#findComment-534580 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.