Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End PHP Possibilities Re: PHP Possibilities

#114652
__
Participant

> Is there a variable for that?

There’s a variable for anything,

as long as you assign a variable to it : )

for example

$title = “My Page Title”;

$template = <<< HTML



$title

HTML
;

print $template;