Ok, I changed it to this now:
echo "<ul>";
$ini_array = parse_ini_file("related_articles.ini");
print_r($ini_array);
for($i=0;$i<count($ini_array);$i++){
$thisArticle = parse_ini_file("$ini_array[$i]");
echo $thisArticle['title'];
}
echo "</ul>";
and this is the result I get:
Array ( [1] => article1.ini [2] => article2.ini )
Notice: Undefined offset: 0 in c:\www\related links\cmprelatedarticles.php on line 25
Warning: parse_ini_file(): Cannot open '' for reading in c:\www\related links\cmprelatedarticles.php on line 25
Hello
It seems to be doing something wrong?