Advertisement
LrdArc

Untitled

Jun 15th, 2016
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <?php
  2.  
  3. $kolom = 'id,bla1,bla2';
  4. $file = file_get_contents( 'coba.csv' );
  5. $lines = explode( "\n", $file );
  6. foreach ( $lines as $line ) {
  7. $dbh->query( "INSERT INTO `toko` $kolom VALUES ($line)" );
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement