I have php installed (via zpanel) in my windows 7 pc and I want to echo php variable using codeblocks by the following way:
<?php
$myname = 'Mr. Arnold';
?>
//in html
my name is {$myname}
is it possible to echo the variable it in html? Actually I intend to create a template using html and php. So I want to echo it in html format.