how to create a variable on php and use it on html code example
Example 1: set php var to html
<?php ob_start();?>
<div>Contents goes <b>here</b></div>
<?php $contents=ob_get_clean();?>
Example 2: how to make a variable in php
$varName = "Hello, World";