Does anyone know of a way to have two files, one that says something like:
file.php
then another file that saysPHP Code:<?php
$varofpie = 'i like $type $pie.';
?>
Is there a way to make it so that I can get something from an other file but it still translates variables?PHP Code:<?php
$type = ";apple";
$pie = "pie";
require("file.php");
echo $varofpie;
?>



Reply With Quote


Bookmarks