<?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>Wilmington Delaware Website Design &#124; Web App Development &#187; HTML</title>
	<atom:link href="http://ejhost.com/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://ejhost.com</link>
	<description>Web Design and Website Development, Website Hosting, Search Engine Optimization</description>
	<lastBuildDate>Wed, 09 May 2012 20:32:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Simple PHP based html State drop down box</title>
		<link>http://ejhost.com/simple-php-based-html-state-drop-down-box/programming/php/</link>
		<comments>http://ejhost.com/simple-php-based-html-state-drop-down-box/programming/php/#comments</comments>
		<pubDate>Tue, 08 May 2012 21:49:59 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[State drop down]]></category>
		<category><![CDATA[State names]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1366</guid>
		<description><![CDATA[Here&#8217;s some simple code for a PHP based US State (including DC) html drop down menu. There are a lot of different ways to do this, but this is straightforward and simple. The reason I&#8217;m posting this is that I&#8217;ve found myself looking for something like this a million times. This is assuming there is [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s some simple code for a PHP based US State (including DC) html drop down menu. There are a lot of different ways to do this, but this is straightforward and simple.</p>
<p>The reason I&#8217;m posting this is that I&#8217;ve found myself looking for something like this a million times.</p>
<p>This is assuming there is a PHP variable named &#8220;$statename&#8221;, either by POST or through reading in a database table with the previous value.</p>
<p>&nbsp;<br />
&lt;select name=&#8221;statename&#8221; &gt;<br />
&lt;option value=&#8221;" &lt;?php if (!$statename) echo &#8221; selected&#8221;; ?&gt;&gt;Select a State&lt;/option&gt;<br />
&lt;option value=&#8221;AL&#8221; &lt;?php if ($statename == &#8220;AL&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Alabama&lt;/option&gt;<br />
&lt;option value=&#8221;AK&#8221; &lt;?php if ($statename == &#8220;AK&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Alaska&lt;/option&gt;<br />
&lt;option value=&#8221;AZ&#8221; &lt;?php if ($statename == &#8220;AZ&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Arizona&lt;/option&gt;<br />
&lt;option value=&#8221;AR&#8221; &lt;?php if ($statename == &#8220;AR&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Arkansas&lt;/option&gt;<br />
&lt;option value=&#8221;CA&#8221; &lt;?php if ($statename == &#8220;CA&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;California&lt;/option&gt;<br />
&lt;option value=&#8221;CO&#8221; &lt;?php if ($statename == &#8220;CO&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Colorado&lt;/option&gt;<br />
&lt;option value=&#8221;CT&#8221; &lt;?php if ($statename == &#8220;CT&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Connecticut&lt;/option&gt;<br />
&lt;option value=&#8221;DE&#8221; &lt;?php if ($statename == &#8220;DE&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Delaware&lt;/option&gt;<br />
&lt;option value=&#8221;DC&#8221; &lt;?php if ($statename == &#8220;DC&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Dist of Columbia&lt;/option&gt;<br />
&lt;option value=&#8221;FL&#8221; &lt;?php if ($statename == &#8220;FL&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Florida&lt;/option&gt;<br />
&lt;option value=&#8221;GA&#8221; &lt;?php if ($statename == &#8220;GA&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Georgia&lt;/option&gt;<br />
&lt;option value=&#8221;HI&#8221; &lt;?php if ($statename == &#8220;HI&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Hawaii&lt;/option&gt;<br />
&lt;option value=&#8221;ID&#8221; &lt;?php if ($statename == &#8220;ID&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Idaho&lt;/option&gt;<br />
&lt;option value=&#8221;IL&#8221; &lt;?php if ($statename == &#8220;IL&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Illinois&lt;/option&gt;<br />
&lt;option value=&#8221;IN&#8221; &lt;?php if ($statename == &#8220;IN&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Indiana&lt;/option&gt;<br />
&lt;option value=&#8221;IA&#8221; &lt;?php if ($statename == &#8220;IA&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Iowa&lt;/option&gt;<br />
&lt;option value=&#8221;KS&#8221; &lt;?php if ($statename == &#8220;KS&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Kansas&lt;/option&gt;<br />
&lt;option value=&#8221;KY&#8221; &lt;?php if ($statename == &#8220;KY&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Kentucky&lt;/option&gt;<br />
&lt;option value=&#8221;LA&#8221; &lt;?php if ($statename == &#8220;LA&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Louisiana&lt;/option&gt;<br />
&lt;option value=&#8221;ME&#8221; &lt;?php if ($statename == &#8220;ME&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Maine&lt;/option&gt;<br />
&lt;option value=&#8221;MD&#8221; &lt;?php if ($statename == &#8220;MD&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Maryland&lt;/option&gt;<br />
&lt;option value=&#8221;MA&#8221; &lt;?php if ($statename == &#8220;MA&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Massachusetts&lt;/option&gt;<br />
&lt;option value=&#8221;MI&#8221; &lt;?php if ($statename == &#8220;MI&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Michigan&lt;/option&gt;<br />
&lt;option value=&#8221;MN&#8221; &lt;?php if ($statename == &#8220;MN&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Minnesota&lt;/option&gt;<br />
&lt;option value=&#8221;MS&#8221; &lt;?php if ($statename == &#8220;MS&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Mississippi&lt;/option&gt;<br />
&lt;option value=&#8221;MO&#8221; &lt;?php if ($statename == &#8220;MO&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Missouri&lt;/option&gt;<br />
&lt;option value=&#8221;MT&#8221; &lt;?php if ($statename == &#8220;MT&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Montana&lt;/option&gt;<br />
&lt;option value=&#8221;NE&#8221; &lt;?php if ($statename == &#8220;NE&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Nebraska&lt;/option&gt;<br />
&lt;option value=&#8221;NV&#8221; &lt;?php if ($statename == &#8220;NV&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Nevada&lt;/option&gt;<br />
&lt;option value=&#8221;NH&#8221; &lt;?php if ($statename == &#8220;NH&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;New Hampshire&lt;/option&gt;<br />
&lt;option value=&#8221;NJ&#8221; &lt;?php if ($statename == &#8220;NJ&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;New Jersey&lt;/option&gt;<br />
&lt;option value=&#8221;NM&#8221; &lt;?php if ($statename == &#8220;NM&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;New Mexico&lt;/option&gt;<br />
&lt;option value=&#8221;NY&#8221; &lt;?php if ($statename == &#8220;NY&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;New York&lt;/option&gt;<br />
&lt;option value=&#8221;NC&#8221; &lt;?php if ($statename == &#8220;NC&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;North Carolina&lt;/option&gt;<br />
&lt;option value=&#8221;ND&#8221; &lt;?php if ($statename == &#8220;ND&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;North Dakota&lt;/option&gt;<br />
&lt;option value=&#8221;OH&#8221; &lt;?php if ($statename == &#8220;OH&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Ohio&lt;/option&gt;<br />
&lt;option value=&#8221;OK&#8221; &lt;?php if ($statename == &#8220;OK&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Oklahoma&lt;/option&gt;<br />
&lt;option value=&#8221;OR&#8221; &lt;?php if ($statename == &#8220;OR&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Oregon&lt;/option&gt;<br />
&lt;option value=&#8221;PA&#8221; &lt;?php if ($statename == &#8220;PA&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Pennsylvania&lt;/option&gt;<br />
&lt;option value=&#8221;RI&#8221; &lt;?php if ($statename == &#8220;RI&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Rhode Island&lt;/option&gt;<br />
&lt;option value=&#8221;SC&#8221; &lt;?php if ($statename == &#8220;SC&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;South Carolina&lt;/option&gt;<br />
&lt;option value=&#8221;SD&#8221; &lt;?php if ($statename == &#8220;SD&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;South Dakota&lt;/option&gt;<br />
&lt;option value=&#8221;TN&#8221; &lt;?php if ($statename == &#8220;TN&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Tennessee&lt;/option&gt;<br />
&lt;option value=&#8221;TX&#8221; &lt;?php if ($statename == &#8220;TX&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Texas&lt;/option&gt;<br />
&lt;option value=&#8221;UT&#8221; &lt;?php if ($statename == &#8220;UT&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Utah&lt;/option&gt;<br />
&lt;option value=&#8221;VT&#8221; &lt;?php if ($statename == &#8220;VT&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Vermont&lt;/option&gt;<br />
&lt;option value=&#8221;VA&#8221; &lt;?php if ($statename == &#8220;VA&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Virginia&lt;/option&gt;<br />
&lt;option value=&#8221;WA&#8221; &lt;?php if ($statename == &#8220;WA&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Washington&lt;/option&gt;<br />
&lt;option value=&#8221;WV&#8221; &lt;?php if ($statename == &#8220;WV&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;West Virginia&lt;/option&gt;<br />
&lt;option value=&#8221;WI&#8221; &lt;?php if ($statename == &#8220;WI&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Wisconsin&lt;/option&gt;<br />
&lt;option value=&#8221;WY&#8221; &lt;?php if ($statename == &#8220;WY&#8221;) echo &#8221; selected&#8221;; ?&gt;&gt;Wyoming&lt;/option&gt;<br />
&lt;/select&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/simple-php-based-html-state-drop-down-box/programming/php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML &#8211; Section 508 compliance</title>
		<link>http://ejhost.com/html-section-508-compliance/website-development/</link>
		<comments>http://ejhost.com/html-section-508-compliance/website-development/#comments</comments>
		<pubDate>Wed, 26 May 2010 22:33:54 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[HTML Reference]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Section 508]]></category>
		<category><![CDATA[website compliance]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=281</guid>
		<description><![CDATA[HTML Section 508 compliance are a set of standards for the blind or visually impaired. Too many websites are not in compliance, rendering them useless to those visually impaired or blind. Section 508 compliance standards are listed here. A checklist of what Section 508 HTML and scripts compliance regulations are involved can be found here. [...]]]></description>
			<content:encoded><![CDATA[<p>HTML Section 508 compliance are a set of standards for the blind or visually impaired. Too many websites are not in compliance, rendering them useless to those visually impaired or blind. Section 508 compliance standards are <a href="http://www.section508.gov/index.cfm?FuseAction=content&#038;ID=12" target="_blank">listed here</a>. </p>
<p>A checklist of what Section 508 HTML and scripts compliance regulations are involved can be <a href="http://www.webaim.org/standards/508/checklist" target="_blank">found here</a>.  </p>
<p>EJ Host&#8217;s website and HTML development process includes section 508 compliance. Section 508 compliance is an important regulation that many designers ignore. These developers are cutting off a significant portion of web traffic from accessing their sites. </p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/html-section-508-compliance/website-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML website development references</title>
		<link>http://ejhost.com/html-website-development-references/website-development/</link>
		<comments>http://ejhost.com/html-website-development-references/website-development/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 17:32:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Reference]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[ASCII]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[ISO-8859-1]]></category>
		<category><![CDATA[reference]]></category>
		<category><![CDATA[W3 Schools]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=274</guid>
		<description><![CDATA[Website design &#038; development HTML, ASCII, and ISO-8859-1 codes can be difficult or impossible to remember. W3 Schools is a great website with references to almost anything you&#8217;d ever need when programming. They not only provide a great reference guide, they do a great job of explaining and providing examples. Use the following design / [...]]]></description>
			<content:encoded><![CDATA[<p>Website design &#038; development HTML, ASCII, and ISO-8859-1 codes can be difficult or impossible to remember. W3 Schools is a great website with references to almost anything you&#8217;d ever need when programming. They not only provide a great reference guide, they do a great job of explaining and providing examples. Use the following design / development / html references next time you&#8217;re developing a website</p>
<p>Website Design / Development / HTML References</p>
<p>HTML ISO-8859-1 Reference<br />
<a href="http://w3schools.com/tags/ref_entities.asp" target="_blank">http://w3schools.com/tags/ref_entities.asp</a></p>
<p>ASCII reference<br />
<a href="http://w3schools.com/tags/ref_ascii.asp" target="_blank">http://w3schools.com/tags/ref_ascii.asp</a></p>
<p>HTML symbols<br />
<a href="http://w3schools.com/tags/ref_symbols.asp" target="_blank">http://w3schools.com/tags/ref_symbols.asp</a></p>
<p>HTML URL Encoding<br />
<a href="http://w3schools.com/tags/ref_urlencode.asp" target="_blank">http://w3schools.com/tags/ref_urlencode.asp</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/html-website-development-references/website-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

