I would like to know if its possible to include part of text file as code in PHP not as text.
For example:
**Index.php FILE**
<?php
require "part1.php";
?>
<div>HELLO WORKD</div>
<?php
require "part2.php";
?>
**Part1.php FILE:**
<?php
if(0==0) {
Part2.php FILE:
}
?>
Part2.php FILE
<?php
}
?>