I want to grab a php file, evaluate any php, then store the contents in a variable.
We'll call this.. page.php
<?php
$content = "Hello World.";
?>
<html>
<head>
<title><?php echo $content ?></title>
</head>
<body>
<?php echo $content ?>
</body>
</html
And I want to put that into a variable by calling a function from another file.