http://www.apachefriends.org/en/xampp.html
/xampp/apache/bin/php.ini
/xampp/apache/php/php.ini
/xampp/apache/php/php5.ini
/xampp/apache/php/php4/php.ini
/xampp/apache/php/php4/php4.ini
<?php
// file() loads the contents of file.txt into an array, $lines
// each line in the file becomes a seperate element of the array.
$lines = file('file.txt');
// now loop through the array to print the contents of the file
echo 'Contents of file.txt using file():<br />';
foreach ($lines as $line)
{
echo htmlspecialchars($line) . '<br />';
}
// we can also access each line of the file seperately,1=0 donc 3=2
echo '3rd line of the file: "' . htmlspecialchars($lines[2]) . '"<br />';
?>


