Hi all
I have a script that I'm developing and I would like to have the configuration data [site name, ranking limit, etc ...] stored in a mysql table
How does one go about recalling values when needed?
I feel that having to do this over and over again is too much
$config_result = mysql_query("SELECT * FROM `phpTitanMS_config`");
$phpTitanMS_config = mysql_fetch_array($config_result);
Any ideas?