Skip to content

Instantly share code, notes, and snippets.

CREATE TABLE IF NOT EXISTS `country` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`iso` char(2) NOT NULL,
`name` varchar(80) NOT NULL,
`nicename` varchar(80) NOT NULL,
`iso3` char(3) DEFAULT NULL,
`numcode` smallint(6) DEFAULT NULL,
`phonecode` int(5) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
@demeros
demeros / dabblet.css
Created June 22, 2012 15:06
Untitled
body{
text-align: center;
}
.main-block{
margin: 0 auto;
width: 980px;
border: 1px solid black;
position: relative;