I made a table in PHP which gets info from INI files. The first table draws each file name, the second draws a integer taken from the file name. Instead of organizing using the file names, I want it to be organized by the integer taken from the files.
<td>" . $files[$i] . "</td>
<td>" . $settings['e1'] . "</td>
This is all done in a loop as well.
$settings=parse_ini_file($dir . $files[$i]);
<td>" . $files[$i] . "</td>
<td>" . $settings['e1'] . "</td>
This is all done in a loop as well.
$settings=parse_ini_file($dir . $files[$i]);