Jump to content

[SOLVED] What is this concept called?


Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.