In Perl, you can assign values to a variable in a freeform sort of format by doing the following:
Code: Select all
($body = <<END);
whatever you want
blah blah blah
123 $othervariable
ENDCan this be done in PHP?
Thanks,
Peter.
Moderator: General Moderators
Code: Select all
($body = <<END);
whatever you want
blah blah blah
123 $othervariable
END