I hereby claim:
- I am nightkingdoms on github.
- I am nkx (https://keybase.io/nkx) on keybase.
- I have a public key ASBfJf5qlCW5b6sVtiSs7hwrJzKzF2nRY6Vt7Gi5inw1hgo
To claim this, I am signing this object:
| <?php | |
| $config = [ | |
| 'db' => [ | |
| 'host' => '', | |
| 'username' => '', | |
| 'password' => '', | |
| 'database' => '', | |
| ], | |
| 'max_time' => 300, // in seconds |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head><title id="page-title"></title> | |
| <!-- tell search engine robots not to follow --> | |
| <meta name="robots" content="noindex, nofollow"> | |
| <meta name="googlebot" content="noindex, nofollow"> | |
| <meta charset="utf-8"> | |
| <!-- prevent caching --> | |
| <meta http-equiv="Pragma" content="no-cache"> |
| DROP TABLE IF EXISTS `countries`; | |
| CREATE TABLE `countries` ( | |
| `id` int(11) NOT NULL auto_increment, | |
| `country_code` varchar(2) NOT NULL default '', | |
| `country_name` varchar(100) NOT NULL default '', | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=240; | |
| INSERT INTO `countries` VALUES (1, 'US', 'United States'); | |
| INSERT INTO `countries` VALUES (2, 'CA', 'Canada'); |