Re: [PHP] including db content as part of script

2003-02-27 Thread Ernest E Vogelsinger
At 13:28 27.02.2003, Dennis Heuer spoke out and said: [snip] >One single question. Is including() a script on runtime only possible with >files or can I include() code from a database? [snip] If you have code in your

RE: [PHP] including db content as part of script

2003-02-27 Thread Niklas Lampén
Well, you could use temporary files for this. I've never done this by myself, but I think it's worth giving a try. :) Fetch the data from the database, write your code to temporary file and then include this temporary file. After that you can destroy the temporary file. Niklas -Original Me