[Solved] Executing code during runtime that cannot be included in the main program


You could try dlopen, dlsym, dlerror and dlclose. These allow you to, at runtime, load libraries. Your server could use it to load code which should execute inside a page.

Howto, by Aaron Isotton

Documentation on man7.org

1

solved Executing code during runtime that cannot be included in the main program