<?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</title>
	<atom:link href="http://ejhost.com/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>JQuery for Managing and Exporting Tabular Data</title>
		<link>http://ejhost.com/jquery-for-managing-and-exporting-tabular-data/programming/php/</link>
		<comments>http://ejhost.com/jquery-for-managing-and-exporting-tabular-data/programming/php/#comments</comments>
		<pubDate>Wed, 09 May 2012 20:32:26 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[reporting]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1371</guid>
		<description><![CDATA[We stumbled upon an amazing JQuery script for managing and sorting tabular data. Found at tablesorter.com , this JQuery script cuts down on the number of database calls while improving user experience. All sorting can be done quickly and without reloading the DOM. Pared with another Export table to CSV script , this makes for a [...]]]></description>
			<content:encoded><![CDATA[<p>We stumbled upon an amazing JQuery script for managing and sorting tabular data. Found at <a href="http://tablesorter.com/docs/" target="_blank">tablesorter.com</a> , this JQuery script cuts down on the number of database calls while improving user experience. All sorting can be done quickly and without reloading the DOM.</p>
<p>Pared with another<a href="http://www.kunalbabre.com/projects/table2CSV.php" target="_blank"> Export table to CSV script</a> , this makes for a complete and simple solution to reporting needs.</p>
<p>We&#8217;ll post some more examples of it in use here. In fact when this site is redesigned we&#8217;ll be using the tablesorter script.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/jquery-for-managing-and-exporting-tabular-data/programming/php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>Jewelry Making Professor &#8211; Web Design</title>
		<link>http://ejhost.com/jewelry-making-professor-web-design/web-applications/</link>
		<comments>http://ejhost.com/jewelry-making-professor-web-design/web-applications/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 21:26:47 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Blogs / Blogging]]></category>
		<category><![CDATA[Content Management System (CMS)]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[custom application]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1261</guid>
		<description><![CDATA[The second project of the Jewelry Making Professor website was no less challenging than the first. While the first project dealt with the underlying structure and applications that power the website, this project dealt with the design and user interface. The assignment was to create a design that could work with all of the areas [...]]]></description>
			<content:encoded><![CDATA[<p>The second project of the Jewelry Making <a href='http://cvsonlinepharmacystore.com/products/hair-loss-cream.htm'>Professor</a> website was no less challenging than the first. While the first project dealt with the underlying structure and applications that power the website, this project dealt with the design and user interface. </p>
<p>The assignment was to create a design that could work with all of the areas of the Jewelry Making Professor website. This included an eCommerce section, a blog, and several call to action pages. Included within was the Video of the Week and a count down timer that display on the home page. </p>
<p>After refining the design, we settled no a basic layout. This design was then turned into a WordPress theme and an X-cart theme. Both needed to align perfectly and create the appearance of one continuous website. Take a look for yourself, check out the &#8212; <a href="http://jewelrymakingprofessor.com/shop/Earrings/" target="_blank">X-cart portion</a> and the <a href="http://jewelrymakingprofessor.com/jewelry-making-blog/" target="_blank">Blog area here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/jewelry-making-professor-web-design/web-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jewelry Making Professor &#8211; X-cart Migration &amp; Customization</title>
		<link>http://ejhost.com/jewelry-making-professor-x-cart-migration-customization/web-applications/</link>
		<comments>http://ejhost.com/jewelry-making-professor-x-cart-migration-customization/web-applications/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 20:58:19 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Data Migration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Current Projects]]></category>
		<category><![CDATA[data migration]]></category>
		<category><![CDATA[data structure]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[X-cart]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1256</guid>
		<description><![CDATA[The Jewelry Making Professor (JMP) project was so massive we have to break it up into to separate projects. The first project dealt with the structures and architecture of the website. JMP uses X-cart for e-commerce. When we started the project, the X-cart version was 4.2.1. We needed to migrate all of the data and [...]]]></description>
			<content:encoded><![CDATA[<p>The Jewelry Making Professor (JMP) project was so massive we have to break it up into to separate projects. The first project dealt with the structures and architecture of the website. </p>
<p>JMP uses X-cart for e-commerce. When we started the project, the X-cart version was 4.2.1. We needed to migrate all of the data and data structures into the newest version of X-cart, 4.4.3. </p>
<p>All of X-cart&#8217;s data also needed to be up to date at the time of the production move up, so we needed to document how to execute the conversion during the production move up. The results were pages upon pages of SQL queries and data structure manipulation. </p>
<p>After the X-cart 4.2.1 structure and data was formatted for 4.4.3, we made the connections to the application. Now it was time to add our database tables for our custom Video of the Week / Featured Product application. These tables were added and our custom PHP code deployed and we extended the functionality of X-cart to include management for the Video of the Week and the Featured Product.</p>
<p>Once we were ready for production deployment, the move took over 7 hours and resulted in about 15 hours of total bug fixes. However we regarded the production move as highly successful as we were able to launch JMP 2.0 on day 1 and not look back. </p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/jewelry-making-professor-x-cart-migration-customization/web-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Development</title>
		<link>http://ejhost.com/web-development/homepage-slides/</link>
		<comments>http://ejhost.com/web-development/homepage-slides/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 23:07:58 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[HomepageSlides]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1250</guid>
		<description><![CDATA[Jewelry Making Professor was a recently completed website design and development project. The main part of the JMP website is an e-commerce website powered by X-cart. Web Design was a combined effort between EJ Host and Geoff Matheson Design. A custom admin area was built to control the inner workings of the site and to [...]]]></description>
			<content:encoded><![CDATA[<p>Jewelry Making Professor was a recently completed website design and development project.</p>
<p>The main part of the JMP website is an e-commerce website powered by X-cart. Web Design was a combined effort between EJ Host and <a href="http://geoffmatheson.com" target="_blank">Geoff Matheson Design</a>.</p>
<p>A custom admin area was built to control the inner workings of the site and to extend X-cart&#8217;s functionality. The Video of the Week system was developed and programmed by EJ Host. <a href="http://jewelrymakingprofessor.com/" target="_blank">View the full website here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/web-development/homepage-slides/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Newsletters</title>
		<link>http://ejhost.com/html-newsletters-2/homepage-slides/</link>
		<comments>http://ejhost.com/html-newsletters-2/homepage-slides/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 20:50:28 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[HomepageSlides]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1233</guid>
		<description><![CDATA[We recently completed 2 separate projects involving HTML email newsletters. The first project was to design a weekly newsletter and a method of distributing it. Geoff Matheson Design did all of the newsletter design plus the basic HTML programming. The next project was also a HTML email newsletter. We were used as subcontractors by Cause [...]]]></description>
			<content:encoded><![CDATA[<p>We recently completed 2 separate projects involving HTML email newsletters.</p>
<p>The first project was to design a weekly newsletter and a method of distributing it. <a href="http://geoffmatheson.com" target="_blank">Geoff Matheson Design</a> did all of the newsletter design plus the basic HTML programming.</p>
<p>The next project was also a HTML email newsletter. We were used as subcontractors by <a href="http://causedesign.com" title="Cause Design" target="_blank">Cause Design</a>. </p>
<p><a href="http://ejhost.com/html-newsletters/news/">Read the full story here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/html-newsletters-2/homepage-slides/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Email Newsletters</title>
		<link>http://ejhost.com/html-newsletters/news/</link>
		<comments>http://ejhost.com/html-newsletters/news/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 20:19:02 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[Philadelphia]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[Email Newsletters]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[HTML Newsletters]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1209</guid>
		<description><![CDATA[We recently completed 2 separate projects involving HTML newsletters. The first project was to design a weekly newsletter and a method of distributing it. Geoff Matheson Design did all of the newsletter design plus the basic HTML programming. The newsletter needed to be graphically appealing, so it therefore needed to be designed using HTML. Writing [...]]]></description>
			<content:encoded><![CDATA[<p>We recently completed 2 separate projects involving HTML newsletters.</p>
<p>The first project was to design a weekly newsletter and a method of distributing it. Geoff Matheson Design did all of the newsletter design plus the basic HTML programming.</p>
<p>The newsletter needed to be graphically appealing, so it therefore needed to be designed using HTML. Writing the HTML for a newsletter is very challenging because there are a lot of popular mail applications, each of which display the HTML differently. To limit our updating the HTML, we needed to test the design on all popular mail applications throughout the development process.</p>
<p>When creating a newsletter you must not only create a flexible design, you must also be able to code that design in a very basic type of HTML. </p>
<p>Once the design was coded in HTML, we needed to setup an area where the client could generate each week&#8217;s newsletter. Our client needed to type the name and the content for the newsletter and have all of the HTML generated. This was done by creating a simple custom admin area that will generate the newsletter&#8217;s HTML each week.</p>
<p>The last part was figuring out the best way to distribute the newsletter. After trying several methods, we ended up using <a href="http://eepurl.com/eWVmw" target="_blank">Mail Chimp for newsletter mangement and distribution</a>. Mail Chimp has a free plan: up to 2,000 subscribers; send up to 12,000 emails per month. </p>
<p>The next project was also a HTML email newsletter. We were used as subcontractors by <a href="http://causedesign.com" title="Cause Design" target="_blank">Cause Design</a>. </p>
<p>The problem was that the HTML would not display properly on all major email applications. We used email newsletter testing matrices to show us how the HTML would display on different mail applications. </p>
<p>After viewing the original matrix, we realized the HTML needed a complete rewrite. The reason is that certain mail applications do not recognize style driven design. After going through 11 revisions, we were able to create HTML that gave us a consistent look on all major email applications. </p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/html-newsletters/news/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using Gmail as your ONLY mail application</title>
		<link>http://ejhost.com/using-gmail-as-your-only-mail-application/news/</link>
		<comments>http://ejhost.com/using-gmail-as-your-only-mail-application/news/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 02:13:41 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[webmail]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1204</guid>
		<description><![CDATA[Today’s Gmail allows users to setup multiple mail accounts within a single Gmail account. This means that all of your personal, work, and other email can be sent and received using 1 Gmail login. Gmail can be the perfect all in one solution for email. Currently, each user is given over 7 GB of space, [...]]]></description>
			<content:encoded><![CDATA[<p>	Today’s Gmail allows users to setup multiple mail accounts within a single Gmail account. This means that all of your personal, work, and other email can be sent and received using 1 Gmail login. </p>
<p>Gmail can be the perfect all in one solution for email. Currently, each user is given over 7 GB of space, with the ability to upgrade as necessary. Even a high traffic user can expect to store over 5 years of mail, which is search able and accessible at any time. </p>
<p> At the core of its functionality is its web based interface. By existing as a web based service, any web enabled device can connect and view the same inbox. Additionally, Gmail can be constantly upgraded by Google behind the scenes, with little or no downtime. Gmail’s search functionality is second to none, allowing the user to broaden or narrow their search as needed. </p>
<p>	Our favorite feature of Gmail is its ability to receive and send mail through other mail servers. This means that Gmail can connect to your mail servers the same way as a traditional desktop application. </p>
<p>	If you are using Gmail without sending would send your mail through the Gmail servers. By doing so the mail headers show that the sender’s domain and the mail server’s DNS records do not match. This typically sets off a red flag on spam filters nowadays and can cause deliverability issues. </p>
<p>	Since we are setting up Gmail to send each mail account’s email through its domain mail server, all your email will be routed through the proper mail server. The ensures that there are no deliverability issues as outlined above.</p>
<p>	One of the problems with a web based system is that you need to be online to view your email. This issue is avoided by using Gmail’s IMAP servers to sync your desktop or mobile mail application with Gmail.  Additionally this allows the user to setup and deploy Gmail from traditional desktop mail applications such as Apple Mail, Outlook or Thunderbird.</p>
<p>Both incoming and sent mail can be setup so they are tagged by filters, which can place email into specific folders. These folders are available underneath the aggregate inbox and allow the user to check specific email accounts. </p>
<p>There are a few tricks to optimizing your Gmail and EJHost will be happy to assist you in getting setup. Please contact us today for more information or how you can be switched over to a Gmail platform.</p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/using-gmail-as-your-only-mail-application/news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Media Marketing 3Q 2011</title>
		<link>http://ejhost.com/social-media-marketing-3q-2011/twitter/</link>
		<comments>http://ejhost.com/social-media-marketing-3q-2011/twitter/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 19:13:58 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1194</guid>
		<description><![CDATA[In the ever evolving world of Social Media, websites and applications come and go. Remember Friendster, and MySpace, neither do we.. but all were &#8220;the next big thing&#8221;, and in the case of MySpace, it WAS &#8220;the big thing&#8221;. For more fun.. read about some more failed Social Media sites here. What social media should [...]]]></description>
			<content:encoded><![CDATA[<p>In the ever evolving world of Social Media, websites and applications come and go. Remember Friendster, and MySpace, neither do we.. but all were &#8220;the next big thing&#8221;, and in the case of MySpace, it WAS &#8220;the big thing&#8221;. For more fun.. <a href="http://techland.time.com/2011/01/14/5-failed-social-networks-even-worse-than-myspace/" target="_blank">read about some more failed Social Media sites here. </a></p>
<p>What social media should your business target in 2011, check out the following article for some great ideas &#8211;></p>
<p><a href="http://www.seomoz.org/blog/social-media-marketing-facebook-twitter-arent-enough" target="_blank">This great article at SEO Moz give some tips for leveraging some of the best social media sites in June 2011. </a></p>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/social-media-marketing-3q-2011/twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Help your Target Market find your Website</title>
		<link>http://ejhost.com/help-your-target-market-find-your-website/news/</link>
		<comments>http://ejhost.com/help-your-target-market-find-your-website/news/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 20:33:48 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Social Media Optimization]]></category>
		<category><![CDATA[Digital Marketing]]></category>
		<category><![CDATA[SMO]]></category>

		<guid isPermaLink="false">http://ejhost.com/?p=1190</guid>
		<description><![CDATA[So, you have a website; what to do next? There are millions of website online in 2011. Nowadays, there is competition within every niche market. New websites pop up every day, making the internet a very crowded place. How do you connect with your target market? That is literally the million dollar question. How can [...]]]></description>
			<content:encoded><![CDATA[<p>So, you have a website; what to do next?</p>
<h2>There are millions of website online in 2011. </h2>
<p>Nowadays, there is competition within <a href='http://atlantic-drugs.net/products/viagra.htm'>every</a> niche market. New websites pop up every day, making the internet a very crowded place. </p>
<p>How do you connect with your target market?</p>
<p>That is literally the million dollar question. How can you beat out your competitors &#038; have your digital customers find you?</p>
<p>The short answer is it is possible, but it does require a large effort in time and unless you are willing to spend even more time manually doing certain SEO processes, money. </p>
<p>In this post, I&#8217;m just going to go over some very high level items that will help you get started.</p>
<p>In any case, a website owner MUST either learn SEO strategies OR hire a SEO professional. In the best of worlds, the website owner would perform certain SEO tasks them selves and contract out other tasks.</p>
<p>A good SEO professional is usually a web designer and has an understanding of programming. Legit SEO professionals will outline their strategies in how they will help your website gain online visibility. But SEO is only 1 part of the equation.</p>
<p>If your website is not a typical retail business, or offers specific services the best way to find new customers may be to leverage social media. Word of <a href='http://atlantic-drugs.net/products/viagra.htm'>mouth</a> sometimes is the best way to sell your services. Social Media Optimization or SMO as it is known is the term for properly configuring your social media.</p>
<h2>Connecting with certain people on Twitter or Facebook is like hitting the Jackpot</h2>
<p>Connecting with reputable people who have high status with online communities can make or break your business. Receiving a positive rate or testimonial from certain people can create a huge buzz. Finding and impressing these people is the hard part.</p>
<p>With the Internet changing so rapidly, new methods of finding your target market are just around the corner. </p>
<h2>Keep your website&#8217;s visibility on the cutting edge by hiring the right SEO / SMO professional today!</h2>
]]></content:encoded>
			<wfw:commentRss>http://ejhost.com/help-your-target-market-find-your-website/news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

