glasserc / phphaml

fork of phphaml to integrate bug fixes -- unmaintained
http://phphaml.sourceforge.net/
21 stars 8 forks source link

Variable interpolation #5

Open derDoc opened 11 years ago

derDoc commented 11 years ago

The title says it all, php code interpolation in plain test does not work.

%p You've pressed #{$_POST['run']} times on the submit button.

should result in

<p>You've pressed <?php echo $_POST['run'];?> times on the submit button.</p>