How to include file in PHP with user defined variable
I am trying to include file in string replace but in output i am getting string not the final output. analytic.php <?php echo "<title> Hello world </title>"; ?> head.php <?php include "analytic.php"; ?> index.php string = " <head> </head>"; $headin…