Hello!
Does anyone know if there's availible some INI parser for PHP so I could load contents of my .ini file to PHP?
Zvonko
.ini file?? is it just a text file of key/value pairs or what?
$fd = fopen($filename) //parse every line fclose($fd)
array parse_ini_file (string filename, bool [process_sections])
see http://us2.php.net/manual/en/function.parse-ini-file.php for more info.