Subversion-Projekte lars-tiefland.content-management

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?
        require_once "../../Online-Shop/connect2.php";
        require_once "../in_export/scanFile.php";
?>
<html>
<head>
<title>scanner</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="#FFFFFF" text="#000000">
<?
        $csv    =       scanFile
                                        (
                                                "/web/apache/mediaran.de/Arbeitsordner/1100769616_25_customer.csv",
                                                "\"",
                                                ";",
                                                0
                                        );

//pre($csv);
//exit;
?>
<table border=1 cellspacing=0 cellpadding=5>
<?
        foreach($csv as $line)
        {
                ?><tr><td><? echo implode("</td><td>",$line); ?></td></tr><?
        }
?>
</table>
</body>
</html>