Embedding existing page in a CakePHP site
Posted
by lhahne
on Stack Overflow
See other posts from Stack Overflow
or by lhahne
Published on 2010-03-28T12:14:51Z
Indexed on
2010/03/28
12:23 UTC
Read the original article
Hit count: 242
We have an existing PHP page (from an earlier project) which could be described as cryptic and ancient. It basically displays a form, catches the input and runs an external application to process the input and then pipes the output to the user.
I would really like not to modify this file any more than is required. Would there be an easy way to just make this file magically work by copying it to some location in the CakePHP's directory and have it receive $POST
etc. as usual?
© Stack Overflow or respective owner