I just found it out!
<?php
$entries = parse_ini_file("$SystemRoot/my.ini"); // before
$entries = parse_ini_file("$SystemRoot/my.ini",1); //now
print_r($entries);
echo $entries['mysqld']['basedir'];
?>
what is the diffrence with
$entries = parse_ini_file("$SystemRoot/my.ini");
$entries = parse_ini_file("$SystemRoot/my.ini",1);
i get with both a result! but only a result with
$entries = parse_ini_file("$SystemRoot/my.ini",1); and
$entries['mysqld']['basedir'];
?!?!?!?!?!