how to read Open Financial Exchange (OFX) file and send to php pages

546 Views Asked by At

how can i read ofx(Open financial exchange) with php that is with csv format

<?php
$row = 1;
if (($handle = fopen("test.csv", "r")) !== FALSE) {
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
    $num = count($data);
    echo "<p> $num fields in line $row: <br /></p>\n";
    $row++;
    for ($c=0; $c < $num; $c++) {
        echo $data[$c] . "<br />\n";
    }
}
fclose($handle);
}
?>
0

There are 0 best solutions below