Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $kolom = 'id,bla1,bla2';
- $file = file_get_contents( 'coba.csv' );
- $lines = explode( "\n", $file );
- foreach ( $lines as $line ) {
- $dbh->query( "INSERT INTO `toko` $kolom VALUES ($line)" );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement