Hello folks!

I have an ini file that looks like this:
index.rent=Rent
index.faq=FAQ
index.contact=Contact
index.links=Links

then I want to read this file:
$english_messages = parse_ini_file('conf/english.ini');
print_r($english_messages);

What I see is:
Array ( [index.rent] => Rent )

And that's all. Shouldn't parse_ini_file return all the messages I have in
ini file but not only the first one? I'm using 4.3.8 on windows XP.

TIA.
Vladimir

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to