I have a script that looks like this designed for getting information about my server:
<html>
<body>
<table width='100%' border='1'>
<?php
foreach ($_SERVER as $key => $value)
{
echo <<<EOT
<tr>
<td width='25%'>
<b>$key</b>
</td>
<td>
$value
</td>
</tr>
EOT;
}
?>
</table>
<br/><br/>
</body>
</html>
My question for you is that I want to know what echo <<<EOT means. I've been searching this everywhere and so far got no results.
Thanks,
- Nathe
<html>
<body>
<table width='100%' border='1'>
<?php
foreach ($_SERVER as $key => $value)
{
echo <<<EOT
<tr>
<td width='25%'>
<b>$key</b>
</td>
<td>
$value
</td>
</tr>
EOT;
}
?>
</table>
<br/><br/>
</body>
</html>
My question for you is that I want to know what echo <<<EOT means. I've been searching this everywhere and so far got no results.
Thanks,
- Nathe