Ronald Wiplinger wrote:
I have a file linked with require into my program with statements like:
define("_ADDRESS","Address");
define("_CITY","City");
I would like to replace this with a mysql table with these two fields
(out of many other fields).
How can I do that?
bye
Ronald
Well, if you have all the settings in a DB already, then what I would do is this.
SELECT param_name, param_value FROM yourTable;
then
while ( list($name, $value) = mysql_fetch_row($results_handler) ) {
define($name, $value);
}
put this in place of your existing defines and you should be good.
--
Jim Lucas
"Some men are born to greatness, some achieve greatness,
and some have greatness thrust upon them."
Twelfth Night, Act II, Scene V
by William Shakespeare
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php