I'm a newbie in PHP programming and I'd like to know if it's possible to change an entire body section of an HTML page to PHP. If yes, how can I proceed? For example, let's consider this piece of code:
<body>
<div class="headertitle">
<a href="https://www.google.com">Google</a>
</div>
<br/><br/>
<div class="row">
<div class="large-post">
<center><h3>Dev Zone</h3></center>
// Here I want to add some PHP code
// $dev = "Hello";
// echo $dev;
<div class="separator"></div>
<br/>
<h6>Hello!</h6>
</div>
<script src="js/vendor/jquery.js"></script>
</body>
Thank you very much.