There are a couple of things I'm not sure about though and can't find anything in ye'old manual about it.
In this example how would I get the variable $EGG to display properly bearing in mind that I need some text directly after it (no spaces).
Code: Select all
$EGG = "Boil";
echo <<<EGGS
My egg is now $EGGed
EGGS;Also... is it possible to run commands inside of <<< END?
Example...
Code: Select all
$EGGS = 2;
echo <<<moreEGGS
I now have ($EGGS*2) eggs
moreEGGS;
// needs to display... "I now have 4 eggs"Any help would be great as usual