How do I include a file that contains PHP code (that must be processed) into another PHP file?
If I use include(), the code will not be parsed. I hope this is possible.
For example (a page):
<?php
$blah = "blch"
$kjk = "jkdfj"
//include PHP code here
if($dkfjsdlf = "sdfsd") {
$jkfj = "skdlfjs"
}
?>
Please Help.