<?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>Rainmaker Web Design &#187; HTML</title>
	<atom:link href="http://rainmakerwebdesign.com/category/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://rainmakerwebdesign.com</link>
	<description>Web Design &#38; Development - from Athens, GA</description>
	<lastBuildDate>Thu, 22 Dec 2011 05:38:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>WordPress HTML Cheat-sheet</title>
		<link>http://rainmakerwebdesign.com/html/wordpress-html-cheat-sheet/</link>
		<comments>http://rainmakerwebdesign.com/html/wordpress-html-cheat-sheet/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 19:35:40 +0000</pubDate>
		<dc:creator>Wade Sonenberg</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://rainmakerwebdesign.com/?p=432</guid>
		<description><![CDATA[I&#8217;m putting this little post together to help my clients on WordPress, and hopefully a few other folks out there when composing WordPress posts and pages.  Please comment below with questions/additions, as I&#8217;ll continue updating this post. Audience: This cheat-sheet is intended for users using the WordPress CMS, and would like to have a bit [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m putting this little post together to help my clients on WordPress, and hopefully a few other folks out there when composing WordPress posts and pages.  Please comment below with questions/additions, as I&#8217;ll continue updating this post.</p>
<p><span style="text-decoration: underline;"><strong>Audience:</strong></span><br />
This cheat-sheet is intended for users using the WordPress CMS, and would like to have a bit more control over the layout and formatting.  It is not a complete guide to HTML, rather is focused on HTML formatting for using the WordPress post and page functions.</p>
<p><span style="text-decoration: underline;"><strong>Scope:</strong></span><br />
We will be reviewing how to better format content within the Visual and HTML tabs for WordPress pages and posts, relying on WP&#8217;s built in rich text editor, a few HTML snippets, and a basic synopsis of CSS styles as they are relevant. Things such as Doctype and &lt;head&gt; tags that are not editable from the editor will not be covered.</p>
<p><span id="more-432"></span></p>
<h3>Image styling &amp; galleries</h3>
<p>Uploading and inserting an image in WordPress is very straightforward (see <a href="http://codex.wordpress.org/Using_Image_and_File_Attachments">here if you have trouble</a>).  Styling it once it&#8217;s in the post:</p>
<h4>Floating an image</h4>
<p>Floating means that all other page content including text, etc., will wrap around the floated element (an image in this case).</p>
<p><em>Code:</em></p>
<div class="code">&lt;img <strong>style=&#8221;float:right;&#8221;</strong> src=&#8221;http://rainmakerwebdesign.com/wp-content/uploads/2010/02/wordpresslogo1.png&#8221; alt=&#8221;Wordpress Logo&#8221; /&gt;</div>
<p><em>Example:</em></p>
<div class="exampleWP"><img style="float: right;" src="http://rainmakerwebdesign.com/wp-content/uploads/2010/02/wordpresslogo1.png" alt="Wordpress Logo" />This is example text: &#8220;Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div>
<h4>Giving it a border and/or padding</h4>
<p>A simple way to dress images up a bit, is to give them a border and/or padding. Borders can be any pixel amount in width, either solid, dotted, or dashed, and can be colored using HTML hex codes or by simply declaring white, red, blue, etc as is done below in the background style.<br />
<em>Code:</em></p>
<div class="code">&lt;img <strong>style=&#8221;border:2px solid #1D3A4F;background:white;padding:5px;float:right;&#8221;</strong> src=&#8221;http://rainmakerwebdesign.com/wp-content/uploads/2010/02/wordpresslogo1.png&#8221; alt=&#8221;Wordpress Logo&#8221; /&gt;</div>
<p><em>Example:</em></p>
<div class="exampleWP"><img style="border: 2px solid #1D3A4F; background: white; padding: 5px; float: right;" src="http://rainmakerwebdesign.com/wp-content/uploads/2010/02/wordpresslogo1.png" alt="Wordpress Logo" />This is example text: &#8220;Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div>
<h4>Margins: the key to using white space</h4>
<p>Text bumping up against images and other elements can sometimes be confusing to the eye, a simple way to fix this is by using margins.  Remember, margin values are <em>are like a clock</em>, they start at 12 O&#8217;clock high and run clockwise. (e.i. &#8211; top, right, bottom, left)<br />
<em>Code:</em></p>
<div class="code">&lt;img <strong>style=&#8221;margin:20px 15px 15px 50px;float:right;&#8221;</strong> src=&#8221;http://rainmakerwebdesign.com/wp-content/uploads/2010/02/wordpresslogo1.png&#8221; alt=&#8221;Wordpress Logo&#8221; /&gt;</div>
<p><em>Example:</em></p>
<div class="exampleWP"><img style="margin: 20px 15px 15px 50px; float: right;" src="http://rainmakerwebdesign.com/wp-content/uploads/2010/02/wordpresslogo1.png" alt="Wordpress Logo" />This is example text: &#8220;Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div>
<h4>Inserting Galleries</h4>
<p>Inserting photo galleries could not be easier since WP 2.5. Simply use your upload/insert button to upload your images to a post. Simply use the &#8220;Gallery&#8221; tab to select options, or use the HTML syntax below:<br />
<em>Code:</em></p>
<div class="code"><strong>[/gallery columns="4"/]</strong><br />
or link to the file:<br />
<strong>[/gallery link="file" columns="4"/]</strong><br />
<em>* you have to remove the slashes (/) for it to work!</em></div>
<p><em>Example:</em></p>
<div class="exampleWP">

<a href='http://rainmakerwebdesign.com/html/wordpress-html-cheat-sheet/attachment/wordpresslogo1/' title='wordpresslogo1'><img width="100" height="100" src="http://rainmakerwebdesign.com/wp-content/uploads/2010/02/wordpresslogo1.png" class="attachment-thumbnail" alt="wordpresslogo1" title="wordpresslogo1" /></a>
<a href='http://rainmakerwebdesign.com/html/wordpress-html-cheat-sheet/attachment/wordpresslogo2/' title='wordpresslogo2'><img width="100" height="100" src="http://rainmakerwebdesign.com/wp-content/uploads/2010/03/wordpresslogo2.png" class="attachment-thumbnail" alt="wordpresslogo2" title="wordpresslogo2" /></a>
<a href='http://rainmakerwebdesign.com/html/wordpress-html-cheat-sheet/attachment/wordpresslogo3/' title='wordpresslogo3'><img width="100" height="100" src="http://rainmakerwebdesign.com/wp-content/uploads/2010/03/wordpresslogo3.png" class="attachment-thumbnail" alt="wordpresslogo3" title="wordpresslogo3" /></a>
<br />
Or, link to file<br />

<a href='http://rainmakerwebdesign.com/html/wordpress-html-cheat-sheet/attachment/wordpresslogo1/' title='wordpresslogo1'><img width="100" height="100" src="http://rainmakerwebdesign.com/wp-content/uploads/2010/02/wordpresslogo1.png" class="attachment-thumbnail" alt="wordpresslogo1" title="wordpresslogo1" /></a>
<a href='http://rainmakerwebdesign.com/html/wordpress-html-cheat-sheet/attachment/wordpresslogo2/' title='wordpresslogo2'><img width="100" height="100" src="http://rainmakerwebdesign.com/wp-content/uploads/2010/03/wordpresslogo2.png" class="attachment-thumbnail" alt="wordpresslogo2" title="wordpresslogo2" /></a>
<a href='http://rainmakerwebdesign.com/html/wordpress-html-cheat-sheet/attachment/wordpresslogo3/' title='wordpresslogo3'><img width="100" height="100" src="http://rainmakerwebdesign.com/wp-content/uploads/2010/03/wordpresslogo3.png" class="attachment-thumbnail" alt="wordpresslogo3" title="wordpresslogo3" /></a>

</div>
<h3>Text styling</h3>
<h4>Boxes = Div&#8217;s</h4>
<p>There are any number of scenarios in which you&#8217;ll want to create a box.  Boxes in HTML are made using the &lt;div&gt; tag, and can contain text, images, and nearly anything.  You may add margin, padding, borders, and background just like the images above.  Here&#8217;s a couple examples:<br />
<em>Code:</em></p>
<div class="code">&lt;div style=&#8221;height:50px;width:400px;border:2px solid red;background:pink;padding:10px;&#8221;&gt;Alert: This could be an error message!&lt;/div&gt;</div>
<p><em>Example:</em></p>
<div class="exampleWP">
<div style="border: 2px solid red; padding: 10px; background: none repeat scroll 0% 0% pink; height: 50px; width: 400px;">Alert: This could be an error message!</div>
</div>
<p><em>Code:</em></p>
<div class="code">&lt;div style=&#8221;width:80%;border:3px dashed green;background:white;padding:10px 30px 10px 30px;&#8221;&gt;Congrats: This could be an success message!&lt;/div&gt;</div>
<p><em>Example:</em></p>
<div class="exampleWP">
<div style="border: 3px dashed green; padding: 10px 30px; background: none repeat scroll 0% 0% white; width: 80%;">Alert: This could be an error message!</div>
</div>
<h4>Paragraphs</h4>
<p>Just like in a book or a magazine, paragraphs are blocks of texts that you may style to your liking.  You may add borders, backgrounds, padding, and margins just like above.  Also, you may add text indentation, line height, text alignment, etc.<br />
<em>Code:</em></p>
<div class="code">&lt;p style=&#8221;text-indent:50px;&#8221;&gt;This is a paragraph with the text indented 50 pixels. Now for some sample text (disregard, for display only) to demonstrate how the next line falls back into place with regular padding and margins set up in your theme, etc.&lt;/p&gt;</div>
<p><em>Example:</em></p>
<div class="exampleWP">
<p style="text-indent: 50px;">This is a paragraph with the text indented 50 pixels. Now for some sample text (disregard, for display only) to demonstrate how the next line falls back into place with regular padding and margins set up in your theme, etc.</p>
</div>
<p><em>Code:</em></p>
<div class="code">&lt;p style=&#8221;line-height:50px;text-align:center;&#8221;&gt;This is a paragraph using a line height of 50 pixels and centering the text. Now for some sample text (disregard, for display only) to demonstrate how the next line falls back into place with regular padding and margins set up in your theme, etc.&lt;/p&gt;</div>
<p><em>Example:</em></p>
<div class="exampleWP">
<p style="text-indent: 50px;">This is a paragraph with the text indented 50 pixels. Now for some sample text (disregard, for display only) to demonstrate how the next line falls back into place with regular padding and margins set up in your theme, etc.</p>
</div>
<h3>Header tags (H1 &#8211; H6)</h3>
<p>Header tags are a great way to organize your content.  Use them to separate your posts and pages hierarchically with the H1 tag at the top, and lesser tags below. <em>*Note: Most themes have styles already created for these tags, but you can always customize them using the style=&#8221;" attributes like above and below.</em><br />
<em>Code:</em></p>
<div class="code">&lt;h1&gt;This is an H1 tag&lt;/h1&gt;<br />
&lt;h2&gt;This is an H2 tag&lt;/h2&gt;<br />
&lt;h3&gt;This is an H3 tag&lt;/h3&gt;<br />
&lt;h4&gt;This is an H4 tag&lt;/h4&gt;<br />
&lt;h5&gt;This is an H5 tag&lt;/h5&gt;<br />
&lt;h6&gt;This is an H6 tag&lt;/h6&gt;</div>
<p><em>Example:</em></p>
<div class="exampleWP">
<h1>This is an H1 tag</h1>
<h2>This is an H2 tag</h2>
<h3>This is an H3 tag</h3>
<h4>This is an H4 tag</h4>
<h5>This is an H5 tag</h5>
<h6>This is an H6 tag</h6>
</div>
<h4>Italics</h4>
<p>Just use the emphasis tag, &lt;em&gt;<br />
<em>Code:</em></p>
<div class="code">&lt;em&gt;This is italic text&lt;em&gt;</div>
<p><em>Example:</em></p>
<div class="exampleWP"><em>This is italic text</em></div>
<h4>Underlined Text</h4>
<p>Easiest way to underline, is to add the &#8220;text-decoration&#8221; attribute:<br />
<em>Code:</em></p>
<div class="code">&lt;p style=&#8221;text-decoration:underline;&#8221;&gt;This is underlined text&lt;em&gt;</div>
<p><em>Example:</em></p>
<div class="exampleWP">
<p style="text-decoration: underline;">This is underlined text</p>
</div>
<h4>Strike through</h4>
<p><em>Code:</em></p>
<div class="code">
<p>&lt;strike&gt;This is text with a strike through&lt;/strike&gt;</p>
</div>
<p><em>Example:</em></p>
<div class="exampleWP"><span style="text-decoration: line-through;">This is text with a strike through</span></div>
<h3>Links</h3>
<p>Hyperlinks, or links for short, are what make HTML different than any other medium. Links are handled with the &lt;a&gt; tag, and the &#8220;href&#8221; attribute is the address of the page you would like to link to. Here&#8217;s a simple example:<br />
<em>Code:</em></p>
<div class="code">&lt;a href=&#8221;http://google.com&#8221;&gt;Take me to google&lt;/a&gt;</div>
<p><em>Example:</em></p>
<div class="exampleWP"><a href="http://google.com">Take me to google</a></div>
<h4>Title attribute</h4>
<p>When a visitor hovers over your link, it&#8217;s nice to have give them a little info about what they would be clicking on if they do so.  Different browsers (IE, Firefox, Safari) handle this a little differently, however it usually hovers a tooltip with the title of the link near the mouse pointer.<br />
<em>Code:</em></p>
<div class="code">&lt;a href=&#8221;http://google.com&#8221; title=&#8221;If you&#8217;re reading this, you are seeing this link&#8217;s title&#8221;&gt;Take me to google&lt;/a&gt;</div>
<p><em>Example:</em></p>
<div class="exampleWP"><a title="If you're reading this, you are seeing this link's title" href="http://google.com">Take me to google</a></div>
<h4>Opening in a new window</h4>
<p>Though it&#8217;s not always recommended, sometimes you want to open links in a new window or browser tab.  For example, if you want to open a link that goes away from your website or blog.  It&#8217;s done by setting a target attribute for the link, we&#8217;ll use blank as it&#8217;s the most common (and don&#8217;t forget the preceding underscore).  <em>*It&#8217;s highly discouraged to ever use new windows with links that go to within the same site</em><br />
<em>Code:</em></p>
<div class="code">&lt;a href=&#8221;http://google.com&#8221; target=&#8221;_blank&#8221;&gt;Take me to google&lt;/a&gt;</div>
<p><em>Example:</em></p>
<div class="exampleWP"><a href="http://google.com" target="_blank">Take me to google in a new window</a></div>
<h3>A note about Microsoft Word</h3>
<p>This cheat-sheet is intended for users using the WordPress CMS, and would like to have a bit more control over the layout and formatting.  It is not a complete guide to HTML, rather is focused on HTML formatting for using the WordPress post and page functions.  <em>Hint: it&#8217;s the icon with the clipboard and MS Word logo on it.</em> </p>
]]></content:encoded>
			<wfw:commentRss>http://rainmakerwebdesign.com/html/wordpress-html-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Explorer 6&#039;s last nail in the coffin: Google</title>
		<link>http://rainmakerwebdesign.com/html/internet-explorer-6s-last-nail-in-the-coffin-google/</link>
		<comments>http://rainmakerwebdesign.com/html/internet-explorer-6s-last-nail-in-the-coffin-google/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 03:55:35 +0000</pubDate>
		<dc:creator>Wade Sonenberg</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[IE6]]></category>

		<guid isPermaLink="false">http://rainmakerwebdesign.com/?p=422</guid>
		<description><![CDATA[What&#8217;s the #1 reason I enjoy doing back end programming instead of front end design? No, it&#8217;s not my lackluster aptitude at graphic design - it&#8217;s internet explorer version 6. See, IE6 thinks it&#8217;s better than everybody else, and I&#8217;m thankful to the lord that even Big G is now backing up.  It ignores internet [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://rainmakerwebdesign.com/wp-content/uploads/2010/02/ie6-sucks-balls1.png"><img class="alignright size-full wp-image-427" title="ie6-sucks-balls" src="http://rainmakerwebdesign.com/wp-content/uploads/2010/02/ie6-sucks-balls1.png" alt="" width="280" height="280" /></a>What&#8217;s the #1 reason I enjoy doing back end programming instead of front end design? No, it&#8217;s not my lackluster aptitude at graphic design -<strong> it&#8217;s internet explorer version 6.</strong></p>
<p>See, IE6 thinks it&#8217;s better than everybody else, and I&#8217;m thankful to the lord that even Big G is now backing up.  It ignores internet wide standards like xhtml and css, and follows it&#8217;s own rules. Yesterday, Google announced that it is<a href="http://googleenterprise.blogspot.com/2010/01/modern-browsers-for-modern-applications.html"> ending it&#8217;s support for IE 6</a>!  The version 6 basher&#8217;s list is long and somewhat illustrious, even including it&#8217;s developer &#8211; Microsoft.</p>
<p>In short, I&#8217;ll save you guys the <a href="http://davidwalsh.name/6-reasons-why-ie6-must-die">techno explanation</a> of why IE6 is bain of all web designers&#8217; existence &#8211; and just say that over 20% of front-end development time goes into bug fixing and hacking custom scripts and styles for a program that was released before those bastards took out the twin towers.</p>
<p>At some point, we&#8217;re going to have to enact a surcharge for IE 6 compliance &#8211; and I wonder how many other firms are already doing this or forgetting IE 6 entirely? </p>
]]></content:encoded>
			<wfw:commentRss>http://rainmakerwebdesign.com/html/internet-explorer-6s-last-nail-in-the-coffin-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>States HTML Select List w/ PHP Selected Value</title>
		<link>http://rainmakerwebdesign.com/html/states-html-select-list-w-php-selected-value/</link>
		<comments>http://rainmakerwebdesign.com/html/states-html-select-list-w-php-selected-value/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 21:39:03 +0000</pubDate>
		<dc:creator>Wade Sonenberg</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://rainmakerwebdesign.com/?p=405</guid>
		<description><![CDATA[I always have trouble finding this, so here it is. The if statement in the checkState() function can be replaced with anything you like to select the option by default&#8230; &#60;? function checkState($state) { if ($row['state'] == $state) { echo ' selected="selected"'; } } ?&#62; &#60;select name="state" id="state"&#62; &#60;option value="--"&#60;? checkState('') ?&#62;&#62;Select...&#60;/option&#62; &#60;option value="AL"&#60;? checkState('AL'); [...]]]></description>
			<content:encoded><![CDATA[<p>I always have trouble finding this, so here it is.  The <em>if statement</em> in the checkState() function can be replaced with anything you like to select the option by default&#8230;</p>
<pre class="code">&lt;?
function checkState($state) {
  if ($row['state'] == $state) {
    echo ' selected="selected"';
  }
}
?&gt;

&lt;select name="state" id="state"&gt;
 &lt;option value="--"&lt;? checkState('') ?&gt;&gt;Select...&lt;/option&gt;
 &lt;option value="AL"&lt;? checkState('AL'); ?&gt;&gt;Alabama&lt;/option&gt;
 &lt;option value="AK"&lt;? checkState('AK'); ?&gt;&gt;Alaska&lt;/option&gt;
 &lt;option value="AZ"&lt;? checkState('AZ'); ?&gt;&gt;Arizona&lt;/option&gt;
 &lt;option value="AR"&lt;? checkState('AR'); ?&gt;&gt;Arkansas&lt;/option&gt;
 &lt;option value="CA"&lt;? checkState('CA'); ?&gt;&gt;California&lt;/option&gt;
 &lt;option value="CO"&lt;? checkState('CO'); ?&gt;&gt;Colorado&lt;/option&gt;
 &lt;option value="CT"&lt;? checkState('CT'); ?&gt;&gt;Connecticut&lt;/option&gt;
 &lt;option value="DE"&lt;? checkState('DE'); ?&gt;&gt;Delaware&lt;/option&gt;
 &lt;option value="DC"&lt;? checkState('DC'); ?&gt;&gt;District Of Columbia&lt;/option&gt;
 &lt;option value="FL"&lt;? checkState('FL'); ?&gt;&gt;Florida&lt;/option&gt;
 &lt;option value="GA"&lt;? checkState('GA'); ?&gt;&gt;Georgia&lt;/option&gt;
 &lt;option value="HI"&lt;? checkState('HI'); ?&gt;&gt;Hawaii&lt;/option&gt;
 &lt;option value="ID"&lt;? checkState('ID'); ?&gt;&gt;Idaho&lt;/option&gt;
 &lt;option value="IL"&lt;? checkState('IL'); ?&gt;&gt;Illinois&lt;/option&gt;
 &lt;option value="IN"&lt;? checkState('IN'); ?&gt;&gt;Indiana&lt;/option&gt;
 &lt;option value="IA"&lt;? checkState('IA'); ?&gt;&gt;Iowa&lt;/option&gt;
 &lt;option value="KS"&lt;? checkState('KS'); ?&gt;&gt;Kansas&lt;/option&gt;
 &lt;option value="KY"&lt;? checkState('KY'); ?&gt;&gt;Kentucky&lt;/option&gt;
 &lt;option value="LA"&lt;? checkState('LA'); ?&gt;&gt;Louisiana&lt;/option&gt;
 &lt;option value="ME"&lt;? checkState('ME'); ?&gt;&gt;Maine&lt;/option&gt;
 &lt;option value="MD"&lt;? checkState('MD'); ?&gt;&gt;Maryland&lt;/option&gt;
 &lt;option value="MA"&lt;? checkState('MA'); ?&gt;&gt;Massachusetts&lt;/option&gt;
 &lt;option value="MI"&lt;? checkState('MI'); ?&gt;&gt;Michigan&lt;/option&gt;
 &lt;option value="MN"&lt;? checkState('MN'); ?&gt;&gt;Minnesota&lt;/option&gt;
 &lt;option value="MS"&lt;? checkState('MS'); ?&gt;&gt;Mississippi&lt;/option&gt;
 &lt;option value="MO"&lt;? checkState('MO'); ?&gt;&gt;Missouri&lt;/option&gt;
 &lt;option value="MT"&lt;? checkState('MT'); ?&gt;&gt;Montana&lt;/option&gt;
 &lt;option value="NE"&lt;? checkState('NE'); ?&gt;&gt;Nebraska&lt;/option&gt;
 &lt;option value="NV"&lt;? checkState('NV'); ?&gt;&gt;Nevada&lt;/option&gt;
 &lt;option value="NH"&lt;? checkState('NH'); ?&gt;&gt;New Hampshire&lt;/option&gt;
 &lt;option value="NJ"&lt;? checkState('NJ'); ?&gt;&gt;New Jersey&lt;/option&gt;
 &lt;option value="NM"&lt;? checkState('NM'); ?&gt;&gt;New Mexico&lt;/option&gt;
 &lt;option value="NY"&lt;? checkState('NY'); ?&gt;&gt;New York&lt;/option&gt;
 &lt;option value="NC"&lt;? checkState('NC'); ?&gt;&gt;North Carolina&lt;/option&gt;
 &lt;option value="ND"&lt;? checkState('ND'); ?&gt;&gt;North Dakota&lt;/option&gt;
 &lt;option value="OH"&lt;? checkState('OH'); ?&gt;&gt;Ohio&lt;/option&gt;
 &lt;option value="OK"&lt;? checkState('OK'); ?&gt;&gt;Oklahoma&lt;/option&gt;
 &lt;option value="OR"&lt;? checkState('OR'); ?&gt;&gt;Oregon&lt;/option&gt;
 &lt;option value="PA"&lt;? checkState('PA'); ?&gt;&gt;Pennsylvania&lt;/option&gt;
 &lt;option value="RI"&lt;? checkState('RI'); ?&gt;&gt;Rhode Island&lt;/option&gt;
 &lt;option value="SC"&lt;? checkState('SC'); ?&gt;&gt;South Carolina&lt;/option&gt;
 &lt;option value="SD"&lt;? checkState('SD'); ?&gt;&gt;South Dakota&lt;/option&gt;
 &lt;option value="TN"&lt;? checkState('TN'); ?&gt;&gt;Tennessee&lt;/option&gt;
 &lt;option value="TX"&lt;? checkState('TX'); ?&gt;&gt;Texas&lt;/option&gt;
 &lt;option value="UT"&lt;? checkState('UT'); ?&gt;&gt;Utah&lt;/option&gt;
 &lt;option value="VT"&lt;? checkState('VT'); ?&gt;&gt;Vermont&lt;/option&gt;
 &lt;option value="VA"&lt;? checkState('VA'); ?&gt;&gt;Virginia&lt;/option&gt;
 &lt;option value="WA"&lt;? checkState('WA'); ?&gt;&gt;Washington&lt;/option&gt;
 &lt;option value="WV"&lt;? checkState('WV'); ?&gt;&gt;West Virginia&lt;/option&gt;
 &lt;option value="WI"&lt;? checkState('WI'); ?&gt;&gt;Wisconsin&lt;/option&gt;
 &lt;option value="WY"&lt;? checkState('WY'); ?&gt;&gt;Wyoming&lt;/option&gt;
&lt;/select&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://rainmakerwebdesign.com/html/states-html-select-list-w-php-selected-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

