| PHP Code from Database? - dumb noob question |
old_expat

msg:4230166 | 8:51 am on Nov 14, 2010 (gmt 0) | First off, I'm a PHP dummy .. and trying to figure out a solution: Is it possible to query a database for PHP code? And if so, how is that PHP code added to the page? Basically, I need pages that have
<?php $id = "unique 6 digit number"; $name = "unique name"; $link = "unique url"; $location = "unique location"; ?>
What follows on the page are additional PHP code blocks that present information which is served from a remote server. My list is about 1,700 lines. If so, what query syntax do I need to use? It appears that I cannot 'echo' PHP code in the same manner I can 'echo' other data?
|
topr8

msg:4230168 | 9:13 am on Nov 14, 2010 (gmt 0) | you need to use eval() which will evaluate your string as php, instead of echoing it
|
old_expat

msg:4230171 | 9:42 am on Nov 14, 2010 (gmt 0) | @topr8 - Thanks, I'll dig into a tutorial. :)
|
|
|