Im having a problem, where I pull php code into an array, and want to spit that code out, AND execute it, but it wont let me do it with the echo command.
Is there an alternative I should be looking at here?
it looks something like this:
I pull this in from a flatfile:
<?php include("posts/NIMpBUS/NIMpBUS-paid the cost to be da bo$$.header"); include("posts/NIMpBUS/NIMpBUS-paid the cost to be da bo$$.txt"); include("posts/NIMpBUS/NIMpBUS-paid the cost to be da bo$$.footer");?>
Into an array.
Then echo array[]
and its not exectuing it, just putting out the code.
What can I use to execute it first?