<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Houston Web Design Blog &#187; General</title>
	<atom:link href="http://blog.levantainteractive.com/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.levantainteractive.com</link>
	<description>A blog regarding web design, search engine optimization, web programming, online marketing and website development for the Houston, TX area.</description>
	<lastBuildDate>Wed, 13 Jan 2010 17:25:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Levanta Client Makes 2009 FastTech 50</title>
		<link>http://blog.levantainteractive.com/general/levanta-client-makes-2009-fasttech-50/</link>
		<comments>http://blog.levantainteractive.com/general/levanta-client-makes-2009-fasttech-50/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 14:54:00 +0000</pubDate>
		<dc:creator>Jack Arnold</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.levantainteractive.com/?p=116</guid>
		<description><![CDATA[Houston based Salvex made the Houston 2009 FastTech 50. Salvex came in at #7 with record growth during the calendar year 2008.
Levanta provides web programming, web design, online marketing, search engine optimization and graphic design services for Salvex.
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right:10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.levantainteractive.com%2Fgeneral%2Flevanta-client-makes-2009-fasttech-50%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.levantainteractive.com%2Fgeneral%2Flevanta-client-makes-2009-fasttech-50%2F" height="61" width="51" /></a></div><p>Houston based <a title="Houston Web Design Client" href="http://www.salvex.com" target="_blank">Salvex</a> made the Houston 2009 FastTech 50. Salvex came in at #7 with record growth during the calendar year 2008.</p>
<p>Levanta provides web programming, web design, online marketing, search engine optimization and graphic design services for Salvex.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.levantainteractive.com/general/levanta-client-makes-2009-fasttech-50/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code Toolbelt: MySQL US states and countries tables</title>
		<link>http://blog.levantainteractive.com/general/code-toolbelt-mysql-us-states-and-countries-tables/</link>
		<comments>http://blog.levantainteractive.com/general/code-toolbelt-mysql-us-states-and-countries-tables/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 15:36:43 +0000</pubDate>
		<dc:creator>johnmsanchez</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.levantainteractive.com/?p=111</guid>
		<description><![CDATA[One of my most recent projects required me to develop a custom PayPal checkout with a state and country drop down menu.  I did a brief search on Google for a MySQL script that would create tables for both the states and countries but that search proved to be a bit more difficult than I [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right:10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.levantainteractive.com%2Fgeneral%2Fcode-toolbelt-mysql-us-states-and-countries-tables%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.levantainteractive.com%2Fgeneral%2Fcode-toolbelt-mysql-us-states-and-countries-tables%2F" height="61" width="51" /></a></div><p>One of my most recent projects required me to develop a custom PayPal checkout with a state and country drop down menu.  I did a brief search on Google for a MySQL script that would create tables for both the states and countries but that search proved to be a bit more difficult than I anticipated.  I am sure this script is used often so it’s hard to understand the lack of search results returned. So I am left to conclude that everyone has a script stored in their personal tool belt and is just unwilling to share.  So I took matters into my own hands and created my own scripts and now posting it to the public (last updated October 8, 2009).</p>
<p>The following MySQL script includes all 195 countries and 51 non-countries such as territories and non-independent entities per <a href="http://www.iso.org/iso/country_codes/iso_3166_code_lists/english_country_names_and_code_elements.htm">ISO 3166-1</a> and displays a unique ID, full country name and ISO 3166-1-alpha-2 country code.  The maximum length of each country’s name was calculated to determine the appropriate field length.</p>
<p style="background: #FFC;padding:10px;">
<code>CREATE TABLE country (<br />
countryID int(8) not null auto_increment,<br />
countryName varchar(50) not null,<br />
countryAbbr varchar(8) not null,<br />
primary key(countryID)<br />
)</code><br />
<code><br />
INSERT INTO country (countryName, countryAbbr) VALUES('Afghanistan','AF');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Åland Islands','AX');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Albania','AL');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Algeria','DZ');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('American Samoa','AS');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Andorra','AD');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Angola','AO');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Anguilla','AI');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Antarctica','AQ');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Antigua and Barbuda','AG');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Argentina','AR');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Armenia','AM');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Aruba','AW');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Australia','AU');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Austria','AT');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Azerbaijan','AZ');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Bahamas','BS');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Bahrain','BH');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Bangladesh','BD');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Barbados','BB');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Belarus','BY');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Belgium','BE');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Belize','BZ');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Benin','BJ');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Bermuda','BM');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Bhutan','BT');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Bolivia, Plurinational State Of','BO');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Bosnia and Herzegovina','BA');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Botswana','BW');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Bouvet Island','BV');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Brazil','BR');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('British Indian Ocean Territory','IO');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Brunei Darussalam','BN');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Bulgaria','BG');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Burkina Faso','BF');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Burundi','BI');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Cambodia','KH');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Cameroon','CM');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Canada','CA');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Cape Verde','CV');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Cayman Islands','KY');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Central African Republic','CF');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Chad','TD');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Chile','CL');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('China','CN');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Christmas Island','CX');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Cocos (Keeling) Islands','CC');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Colombia','CO');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Comoros','KM');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Congo','CG');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Congo, The Democratic Republic Of The','CD');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Cook Islands','CK');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Costa Rica','CR');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Côte D''Ivoire','CI');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Croatia','HR');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Cuba','CU');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Cyprus','CY');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Czech Republic','CZ');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Denmark','DK');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Djibouti','DJ');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Dominica','DM');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Dominican Republic','DO');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Ecuador','EC');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Egypt','EG');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('El Salvador','SV');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Equatorial Guinea','GQ');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Eritrea','ER');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Estonia','EE');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Ethiopia','ET');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Falkland Islands (Malvinas)','FK');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Faroe Islands','FO');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Fiji','FJ');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Finland','FI');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('France','FR');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('French Guiana','GF');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('French Polynesia','PF');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('French Southern Territories','TF');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Gabon','GA');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Gambia','GM');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Georgia','GE');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Germany','DE');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Ghana','GH');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Gibraltar','GI');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Greece','GR');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Greenland','GL');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Grenada','GD');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Guadeloupe','GP');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Guam','GU');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Guatemala','GT');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Guernsey','GG');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Guinea','GN');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Guinea-Bissau','GW');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Guyana','GY');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Haiti','HT');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Heard Island and Mcdonald Islands','HM');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Holy See (Vatican City State)','VA');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Honduras','HN');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Hong Kong','HK');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Hungary','HU');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Iceland','IS');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('India','IN');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Indonesia','ID');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Iran, Islamic Republic Of','IR');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Iraq','IQ');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Ireland','IE');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Isle Of Man','IM');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Israel','IL');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Italy','IT');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Jamaica','JM');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Japan','JP');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Jersey','JE');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Jordan','JO');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Kazakhstan','KZ');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Kenya','KE');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Kiribati','KI');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Korea, Democratic People''s Republic Of','KP');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Korea, Republic Of','KR');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Kuwait','KW');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Kyrgyzstan','KG');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Lao People''s Democratic Republic','LA');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Latvia','LV');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Lebanon','LB');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Lesotho','LS');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Liberia','LR');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Libyan Arab Jamahiriya','LY');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Liechtenstein','LI');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Lithuania','LT');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Luxembourg','LU');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Macao','MO');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Macedonia, The Former Yugoslav Republic Of','MK');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Madagascar','MG');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Malawi','MW');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Malaysia','MY');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Maldives','MV');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Mali','ML');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Malta','MT');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Marshall Islands','MH');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Martinique','MQ');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Mauritania','MR');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Mauritius','MU');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Mayotte','YT');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Mexico','MX');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Micronesia, Federated States Of','FM');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Moldova, Republic Of','MD');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Monaco','MC');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Mongolia','MN');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Montenegro','ME');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Montserrat','MS');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Morocco','MA');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Mozambique','MZ');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Myanmar','MM');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Namibia','NA');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Nauru','NR');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Nepal','NP');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Netherlands','NL');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Netherlands Antilles','AN');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('New Caledonia','NC');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('New Zealand','NZ');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Nicaragua','NI');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Niger','NE');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Nigeria','NG');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Niue','NU');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Norfolk Island','NF');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Northern Mariana Islands','MP');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Norway','NO');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Oman','OM');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Pakistan','PK');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Palau','PW');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Palestinian Territory, Occupied','PS');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Panama','PA');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Papua New Guinea','PG');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Paraguay','PY');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Peru','PE');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Philippines','PH');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Pitcairn','PN');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Poland','PL');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Portugal','PT');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Puerto Rico','PR');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Qatar','QA');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Réunion','RE');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Romania','RO');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Russian Federation','RU');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Rwanda','RW');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Saint Barthélemy','BL');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Saint Helena','SH');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Saint Kitts and Nevis','KN');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Saint Lucia','LC');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Saint Martin','MF');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Saint Pierre and Miquelon','PM');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Saint Vincent and The Grenadines','VC');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Samoa','WS');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('San Marino','SM');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Sao Tome and Principe','ST');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Saudi Arabia','SA');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Senegal','SN');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Serbia','RS');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Seychelles','SC');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Sierra Leone','SL');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Singapore','SG');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Slovakia','SK');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Slovenia','SI');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Solomon Islands','SB');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Somalia','SO');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('South Africa','ZA');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('South Georgia and The South Sandwich Islands','GS');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Spain','ES');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Sri Lanka','LK');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Sudan','SD');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Suriname','SR');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Svalbard and Jan Mayen','SJ');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Swaziland','SZ');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Sweden','SE');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Switzerland','CH');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Syrian Arab Republic','SY');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Taiwan, Province Of China','TW');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Tajikistan','TJ');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Tanzania, United Republic Of','TZ');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Thailand','TH');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Timor-Leste','TL');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Togo','TG');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Tokelau','TK');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Tonga','TO');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Trinidad and Tobago','TT');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Tunisia','TN');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Turkey','TR');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Turkmenistan','TM');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Turks and Caicos Islands','TC');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Tuvalu','TV');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Uganda','UG');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Ukraine','UA');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('United Arab Emirates','AE');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('United Kingdom','GB');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('United States','US');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('United States Minor Outlying Islands','UM');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Uruguay','UY');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Uzbekistan','UZ');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Vanuatu','VU');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Venezuela, Bolivarian Republic Of','VE');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Viet Nam','VN');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Virgin Islands, British','VG');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Virgin Islands, U.S.','VI');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Wallis and Futuna','WF');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Western Sahara','EH');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Yemen','YE');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Zambia','ZM');<br />
INSERT INTO country (countryName, countryAbbr) VALUES('Zimbabwe','ZW');</code></p>
<p>The following MySQL script includes all 50 U.S. states and possessions per the <a href="http://www.usps.com/ncsc/lookups/usps_abbreviations.html">United States Postal Service</a> and displays a unique ID, full state name, state abbreviation and ISO 3166-1-alpha-2 country code. The maximum length of each state’s name was calculated to determine the appropriate field length.</p>
<p style="background: #FFC;padding:10px;">
<code>CREATE TABLE State (<br />
stateID int(8) not null auto_increment,<br />
stateName varchar(32) not null,<br />
stateAbbr varchar(8) not null,<br />
countryAbbr varchar(8) not null,<br />
primary key(stateID)<br />
)<br />
</code><br />
<code><br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Alabama','AL','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Alaska','AK','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('American Samoa','AS','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Arizona ','AZ','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Arkansas','AR','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('California ','CA','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Colorado ','CO','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Connecticut','CT','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Delaware','DE', 'US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('District Of Columbia','DC','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Federated States Of Micronesia','FM','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Florida','FL','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Georgia','GA','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Guam ','GU','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Hawaii','HI','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Idaho','ID','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Illinois','IL','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Indiana','IN','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Iowa','IA','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Kansas','KS','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Kentucky','KY','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Louisiana','LA','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Maine','ME','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Marshall Islands','MH','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Maryland','MD','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Massachusetts','MA','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Michigan','MI','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Minnesota','MN','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Mississippi','MS','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Missouri','MO','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Montana','MT','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Nebraska','NE','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Nevada','NV','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('New Hampshire','NH','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('New Jersey','NJ','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('New Mexico','NM','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('New York','NY','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('North Carolina','NC','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('North Dakota','ND','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Northern Mariana Islands','MP','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Ohio','OH','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Oklahoma','OK','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Oregon','OR','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Palau','PW','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Pennsylvania','PA','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Puerto Rico','PR','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Rhode Island','RI','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('South Carolina','SC','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('South Dakota','SD','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Tennessee','TN','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Texas','TX','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Utah','UT','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Vermont','VT','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Virgin Islands','VI','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Virginia ','VA','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Washington','WA','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('West Virginia','WV','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Wisconsin','WI','US');<br />
INSERT INTO State (stateName, stateAbbr, countryAbbr) VALUES ('Wyoming','WY','US');</code></p>
<p>I hope you find these scripts helpful and include them into your code tool belt.  I will try and keep these updated with any changes.  Come back soon for additional scripts including Canadian provinces and territories and counties of the United Kingdom.</p>
<p>Plain text files:<br />
<a href="http://levantainteractive.com/downloads/mysqlCountries.txt">MySQL Countries</a><br />
<a href="http://levantainteractive.com/downloads/mysqlStates.txt">MySQL U.S. States</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.levantainteractive.com/general/code-toolbelt-mysql-us-states-and-countries-tables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Levanta Welcomes You to the Houston Web Design Blog</title>
		<link>http://blog.levantainteractive.com/general/levanta-welcomes-you-to-our-blog/</link>
		<comments>http://blog.levantainteractive.com/general/levanta-welcomes-you-to-our-blog/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 18:37:54 +0000</pubDate>
		<dc:creator>Jack Arnold</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.levantainteractive.com/?p=3</guid>
		<description><![CDATA[We are excited to introduce our blog. Levanta&#8217;s Houston Web Design Blog will cover topics concerning web design, graphic and logo design, online marketing, pay-per-click advertising, search engine optimization and more!
Web Design
We want to share our knowledge of web design with our current clients and potential clients here in Houston, TX and abroad. Our topics [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right:10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.levantainteractive.com%2Fgeneral%2Flevanta-welcomes-you-to-our-blog%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.levantainteractive.com%2Fgeneral%2Flevanta-welcomes-you-to-our-blog%2F" height="61" width="51" /></a></div><p>We are excited to introduce our blog. Levanta&#8217;s <b>Houston Web Design Blog</b> will cover topics concerning <b>web design</b>, <b>graphic and logo design</b>, <b>online marketing</b>, <b>pay-per-click advertising</b>, <b>search engine optimization</b> and more!</p>
<h2>Web Design</h2>
<p>We want to share our knowledge of web design with our current clients and potential clients here in Houston, TX and abroad. Our topics may include the basics of website design, finding the right custom web design company, how to improve an existing site with a redesign, why designs cost money and where to save money.</p>
<h2>Graphic and Logo Design</h2>
<p>The graphic designers at Levanta want to reveal their winning strategies and personal influences with you, so that you better understand our methods and how we approach our design projects.</p>
<h2>Online Marketing</h2>
<p>We will answer all of your questions about <b>online marketing</b>. Many of you may or may not understand how easy it is to embrace online marketing. A few reads from our blog will eventually get you on your way to generating new leads for your business.</p>
<h2>Ecommerce</h2>
<p>Levanta knows <b>ecommerce</b>. We have experience writing some of the most complicated shopping carts, auction engines, supply chain management systems, etc. These projects may seem overwhelming, but you&#8217;d be surprised to know that some of the solutions we provided are very cost effective. Read up on our <b>ecommerce blog</b> to find some of these cost-saving strategies when approaching your next ecommerce project</p>
<h2>Web Programming</h2>
<p>The programmers at Levanta are chomping at the bit to show the world some of the tips and tricks we&#8217;ve acquired over the years. Maybe you can learn something or maybe you can recommend something. Either way we look forward to your comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.levantainteractive.com/general/levanta-welcomes-you-to-our-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

