Is there a way to call an array member inside the PHP HEREDOC syntax?
I understand the HEREDOC can take $strings, and that works. I tried calling array members, but that failed:
echo <<<EOF
<tr>
<td>$inner_array_member["ID"]</td>
<td>$inner_array_member["Date"]</td>
<td>$inner_array_member["Time"]</td>
<td>$inner_array_member["Published"]</td>
<td>$inner_array_member["Article"]</td>
<td><a href="rendered.php?editarticle=$inner_array_member["ID"]">EDIT</a></td>
</tr>
EOF;
However, if I rename the strings into simple form ($Article = $inner_array_member["Article"]), and call them, all is fine. Is there any way around this?