Jump to content

[SOLVED] Code not being executed in pages retrieved from DB


fatfrank

Recommended Posts

I suspect this is a real noob question, but here goes.

 

I've uploaded files holding the textual content of my web pages to a mysql db and am retreiving them via a query, passing the data to a variable and printing that variable to the page.

 

This works fine until I want to execute some code included in the iploaded file (the code doesn't exsits as such on the file on the server, right?).

 

Do I need to create a tmp file of the text and then include it on the main page to get the code to execute or is there another method?

 

Sorry if it's a little vague.

 

Fat

Do you mean server side code(php)? If so, you would have to "include" it instead of just printing it, which would mean it would have to have a location. It wouldn't be hard to do it temproarily, though:

file_put_contents("tmp.php", $string");
include "tmp.php";
unlink("tmp.php");

 

Good Luck!

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.