Created
May 31, 2011 05:50
-
-
Save nobodyplace/1000032 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$sth = $pdo->prepare("INSERT INTO sample (id, date) VALUES (:id, :date)"); | |
foreach($data as $line): | |
$sth->execute(array( | |
':id' => $line['id'], | |
':date' => $line['date'] | |
)); | |
endforeach; | |
$sth->closeCursor(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment