My config table:\[code\]name | value--------+------version | 1.5.6title | test\[/code\]How I try and get it:\[code\]$getCfg = mysql_query("SELECT * FROM config");$config = mysql_fetch_assoc($getCfg);echo $config['title'];\[/code\]Equals to:\[code\]Notice: Undefined index: title in C:\web\index.php on line 5\[/code\]How would I get the value where the name is title?The above doesn't work..well if I add WHERE title = 'test' and then echo $config['title']