I have this:
$content = <<<TD
$D['section']
TD;
that fails silently and stops php even though errors are turned on
This works:
$content = <<<TD
{$D['section']}
TD;
Now, I just stumbled on that "fix" and it took me a loooong time to
figure out where the problems laid.
What's going on here?
This isn't much help:
Jeff
$content = <<<TD
$D['section']
TD;
that fails silently and stops php even though errors are turned on
This works:
$content = <<<TD
{$D['section']}
TD;
Now, I just stumbled on that "fix" and it took me a loooong time to
figure out where the problems laid.
What's going on here?
This isn't much help:
Jeff
Comment