Untuk upload text file ke database (SQL Server atau MySQL) dengan delimiter titik koma (;), script php nya adalah sebagai berikut :

"

$filenm = fopen("U-THCQ-DataItemH1-1209281400.mm", "r");

// Read line by line until end of file
while(!feof($filenm)) {
$filename = fgets($filenm);

$pisah = explode(";", $filename);

$no_sj = $pisah[0];
$tgl_sj = $pisah[1];
$no_do = $pisah[2];
$tgl_do = $pisah[3];

   //echo fgets($filenm) . "
";

echo $no_sj . " - " . $tgl_sj . " - " . $no_do . " - " . $tgl_do . "
";
}

fclose($filenm);
?>
"


Nama text file yang dibaca adalah : U-THCQ-DataItemH1-1209281400.mm.

Output yang dihasilkan sebagai berikut :

CBR150RC(IN)M/T - BK - BLACK - CBR 150R
CBR150RC(IN)M/T - OH - ORANGE HITAM - CBR 150R
CBR150RC(IN)M/T - PM - PUTIH MERAH - CBR 150R
CBR150RC(IN)M/T - RD - RED - CBR 150R
CBR150RC(IN)RM/T - OH - ORANGE HITAM - CBR 150R


0 Comments:

Post a Comment