Im trying to get dynamic with php. And I wonder if this is possible. However i pass a $var to ID the section does not show up. Lets say I have this:
<?php
$var = "welcome";
$html = '<section id="'.$var.'">Im glad you are here</section>';
echo $html;
?>
So this is the basic thing and I cant find any other reference to this. Note: Im writing this from my phone so forgive me if there is a syntax error. Thanks in advance and wish you a good day.