Skip to content

Instantly share code, notes, and snippets.

View sammybammy52's full-sized avatar
😄

Seye Yemi-Olowolabi sammybammy52

😄
View GitHub Profile
@mofesolapaul
mofesolapaul / nigeria-states.json
Last active June 29, 2024 12:55
List of all Nigerian states, alphabetically arranged in JSON array
[
"Abia",
"Adamawa",
"Akwa Ibom",
"Anambra",
"Bauchi",
"Bayelsa",
"Benue",
"Borno",
"Cross River",
@LithionLabs
LithionLabs / import.php
Created May 27, 2015 23:11
Import CSV using fgetcsv() and insert into a MySQL database using PDO.
<?php
try {
$pdo = new PDO('mysql:host=localhost;dbname=test_db', 'username', 'password');
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$pdo->exec('SET NAMES "utf8"');
}
catch (PDOException $e) {