No, (AFAIK) you have to first retreive the code from the DB [as a string], then use eval() to actually execute it.
The SSI might work, but it has nothing to do with PHP. PHP would just ignore it, pass it through and leave it to apache to process.
If you wanted to include (print) the
contents of a file in PHP:
PHP Code:
readfile('SomePHPCode.txt');
...but to actually
execute the code within that file:
PHP Code:
require 'SomePHPCode.txt';
// or
require_once 'SomePHPCode.txt';
See the docs on
require
and
include
-r