I'm doing a file include as
<?php $content = file_get_conten ts(TEMPLATEPATH . '/somefile.php');
echo $content; ?>
In somefile.php, there is PHP code. How can I execute the code once
$content is displayed as above?
Thanks,
Brett
<?php $content = file_get_conten ts(TEMPLATEPATH . '/somefile.php');
echo $content; ?>
In somefile.php, there is PHP code. How can I execute the code once
$content is displayed as above?
Thanks,
Brett
Comment