I'm trying to write a page that calls PHP that's stored in a MySQL database. The page that is stored in the MySQL database contains PHP (and HTML) code which I want to run on page load.
How could I go about doing this?
|
|
|
|
|
|
|
You can use the eval command for this. I would recommend against this though, because there's a lot of pitfalls using this approach. Debugging is hard(er), it implies some security risks (bad content in the DB gets executed, uh oh). See (blogpost by a random person) Eval is Evil for instance. Google for Eval is Evil, and you'll find a lot of examples why you should find another solution. Addition: Another good article with some references to exploits is this blogpost. Refers to past vBulletin and phpMyAdmin exploits which were caused by improper Eval usage. |
|||
|
|
|
|
Easy: $x // your variable with the data from the DB <9php echo eval("?>".$x."<9") ?> (weird... well replace '9' w/ a '?' and you've got it) Let me know, works great for me in MANY applications, can't help but notice that everyone is quick to say how bad it is, but slow to actually help out with a straight answer... |
||
|
|
|
|
Have you considered using your Source Control system to store different forks for the various installations (and the modules that differ among them)? That would be one of several best practices for application configuration I can think of. Yours is not an unusual requirement, so it's a problem that's been solved by others in the past; and storing code in a database is one I think you'd have a hard time finding reference to, or being advised as a best practice. Good thing you posted the clarification. You've probably unintentionally posed an answer in search of a suitable question. |
||
|
|
|
|
Hey guys, I'm an amateur with PHP and I understand that storing PHP and executing it from a MySQL record is a security risk, but I'm stuck because I'm converting all of the sites I work on into DB driven ones that use a basic CMS I write for each one. The problem is I have pages that use PHP for various reasons on every project, but if all my data for each page comes from the database, how do I accomplish this?
|
||
|
|
|
@erlando, Every time I've seen a question like this, the asker is almost always stuck with some punishing release process wherein data changes are relatively easy to get through the system, but code changes are almost impossible. So they solve the problem by turning the code into data. |
||
|
|
|
|
Maybe you should ask yourself why you need code to be stored in your DB in the first place. I would take this to be a sign that I needed to rethink that bit of my architecture. There's some very large security pitfalls associated with your approach. Given that you can't verify that the php-code you're about to execute is genuine, sql-injection suddenly becomes a huge concern. |
||
|
|
|
|
|
||
|
|
|
|
You can look at the eval function in PHP. It allows you to run arbitrary PHP code. It can be a huge security risk, though, and is best avoided. |
||
|
|