<?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>Nicolas Schudel &#187; Featured</title>
	<atom:link href="http://nicolasschudel.name/category/featured/feed/" rel="self" type="application/rss+xml" />
	<link>http://nicolasschudel.name</link>
	<description>Balancing Design and Development in Online Media</description>
	<lastBuildDate>Sun, 09 May 2010 08:42:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Compressed, High-Performing Animations in Flash</title>
		<link>http://nicolasschudel.name/bitmap-animations/</link>
		<comments>http://nicolasschudel.name/bitmap-animations/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 01:50:22 +0000</pubDate>
		<dc:creator>Nicolas</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://nicolasschudel.name/?p=296</guid>
		<description><![CDATA[<p>Multimedia applications often have interactive elements based on video. The Flash Video data used for such scenes is compressed but processor intensive. I discuss a solution that decompresses the data on the client side, in order to enhance display performance.</p>]]></description>
			<content:encoded><![CDATA[<h2>Introduction</h2>
<p>
Multimedia applications often have interactive elements based on video: For example, a pre-rendered 3D scene that moves according to a user’s interaction. The trick, in such a scene, is to play specific parts of the movie forward and backward to fake movement.
</p>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="480" height="360" id="sculpture"><param name="movie" value="/fileadmin/articles/2009/11/sculpture.swf" /><!--[if !IE]>--><object type="application/x-shockwave-flash" data="/fileadmin/articles/2009/11/sculpture.swf" width="480" height="360"><!--<![endif]--><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a><!--[if !IE]>--></object><!--<![endif]--></object>
<p class="wp-caption-text">
This sculpture has been rendered as a movie, with the camera panning 360˚around the object. <br />(Drag with the mouse to turn the object)
</p>

<h2>Embedding Animations</h2>
<p>
There are three basic ways to embed an animated scene into Flash:
</p>
<ul>
<li>In the Flash Video format (FLV);</li>
<li>As a sequence of images, e.g. PNG or JPEG;</li>
<li>As a sequence of vector graphics.</li>
</ul>
<p>
The latter is often forgotten. Tools such as <a href="http://www.cinemax4d.de/flashex/home_us.html">Cinema 4D’s FlashEx renderer</a> can export a scene as a vector animation. If the scene doesn’t contain many objects and has simple texturing, a vector animation would probably be the way to go. The file size stays relatively small, plus the graphics are scalable.
</p>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="480" height="150" id="blimp"><param name="movie" value="/fileadmin/articles/2009/11/blimp.swf" /><!--[if !IE]>--><object type="application/x-shockwave-flash" data="/fileadmin/articles/2009/11/blimp.swf" width="480" height="150"><!--<![endif]--><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a><!--[if !IE]>--></object><!--<![endif]--></object>
<p class="wp-caption-text">
A simple 3D object rendered as a vector sequence with FlashEx 2.<br />(Drag with the mouse to turn the object)
</p>
<p>
The other two methods, FLV and image sequences, are both pixel based, but have their own pros and cons. FLV has a decent quality/size ratio. <a href="http://help.adobe.com/en_US/Flash/10.0_UsingFlash/WSBDABD69F-D146-4e5c-9340-BF717A10426C.html">Flash CS4 does not allow F4V files to be embedded directly</a>, so the best codec is the older and less compressing On2 VP6. Interacting with FLV, e.g. jumping between frames quickly or playing it backward, is heavy on the processor. Presumably, the Flash Player has to jump to the nearest proceeding keyframe and process the changes to the current frame each time. On the other end of the spectrum is the image sequence. The compression is on a per-frame basis, so the overall file size will usually turn out much bigger. The display performance, however, is far better than FLV.
</p>
<h2>Eliminating the Cons</h2>
<p>
A combination of the reduced file size of FLV and the performance of an image sequence is possible, if the data gets decompressed on the client side. H.264 encoded video data could be sent through the wire and then be processed into an uncompressed image sequence before being displayed. I wrote a class named BitmapAnimation that parses each frame of a MovieClip (including any FLVs within) and adds it to an array of bitmap data. BitmapAnimation has the same methods as a MovieClip (gotoAndPlay, currentframe etc.), so the two can be interchanged. For instance, I was able to use a BitmapAnimation in place of a MovieClip to create a MovieMaterial in Papervision3d – polymorphism works. 
</p>
<p>
When <a href="/fileadmin/flv_vs_bitmapanimation.zip">compared with simultaneously running FLVs</a>, BitmapAnimations showed a <strong>500% performance increase</strong> on my system. The difference was even bigger with the clips running backward. There may be a performance benefit in converting complicated vector animations to a BitmapAnimation before they are displayed. I have, however, not recently come across a scenario where a pure vector animation alone caused the frame rate to stagnate. 
</p>
<p>
The MovieClip option cacheAsBitmap requires, to my understanding, the frame to be rendered in the Flash display list before it takes effect. This would be the only major difference to BitmapAnimation (where the image is rendered before being displayed). Enabling cacheAsBitmap on MovieClips containing FLV did not show a change in performance in my tests. Because a video is usually viewed once, it makes sense not to cache FLV by default.
</p>
<p>
There is one known drawback when using a BitmapAnimation: Depending on the size of the video and the client’s processor speed, the Flash Player could “freeze” for a few seconds while decompressing the video data. I created an additional class, where I lengthened the processing time by decompressing one frame per half-second. This would allow the video to be prepared in the background without noticeably slowing down the rest of the application. Delayed processing would work best during a loading sequence, where the video is loaded first, then converted to a BitmapAnimation, while the rest of the assets are being retrieved.
</p>
<h2>Usage</h2>
<p>Simply pass a MovieClip to the draw method.</p>
<pre class="brush: as3">
bitmapAnimation = new BitmapAnimation();
bitmapAnimation.draw(movieClip);
addChild(bitmapAnimation);
</pre>
<p>The imported bitmap data can be reused with multiple BitmapAnimations.</p>
<pre class="brush: as3">
var bitmapAnimation1:BitmapAnimation = new BitmapAnimation();
bitmapAnimation1.draw(movieClip);
var bitmapAnimation2:BitmapAnimation = new BitmapAnimation(bitmapAnimation1.bitmapSequence);
</pre>

<h2>Conclusions</h2>
<p>
Pre-rendering a complex MovieClip, such as embedded FLV, using the BitmapAnimation class, may likely show a performance increase. Also, this method may remove the need to embed an image sequence where display performance is an issue. Due to the computation time required for conversion, BitmapAnimations should not be used for long clips. Inputs and feature requests are welcome, just add a comment below.
</p>
<p><a href="/fileadmin/bitmapanimation_classes.zip">Download the classes BitmapAnimation and DelayedBitmapAnimation</a>.</p>
<p><a href="/fileadmin/blimp.zip">Download the blimp example</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://nicolasschudel.name/bitmap-animations/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Linking a Site’s Search Function to the Browser’s Search Bar</title>
		<link>http://nicolasschudel.name/linking-search/</link>
		<comments>http://nicolasschudel.name/linking-search/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 18:56:02 +0000</pubDate>
		<dc:creator>Nicolas</dc:creator>
				<category><![CDATA[Branding]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://nicolasschudel.name/?p=180</guid>
		<description><![CDATA[<p>The search bar has become a common feature in modern web browsers. Equally common, are search forms embedded into web sites. I talk about a format named OpenSearch and show how it can be used to link site- and browser search functionality.</p>]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.mozilla.com/en-US/firefox/search.html">search bar</a> has become a common feature in modern browsers since it was <a href="http://en.wikipedia.org/wiki/Browser_wars#The_second_browser_war">introduced by Firefox in 2004</a>. Users have gotten so used to finding the search bar in the upper right hand corner of the window, that many sites<a href="http://www.uie.com/brainsparks/2006/03/22/does-search-need-to-be-in-the-upper-right/"> adapted their layout to place their own local search in the same area</a>.</p>

<p>A lesser known feature of browsers, such as Firefox 2 or Internet Explorer 7, is that users can add search functionality to the browser’s search bar directly from within a page. The data structure containing the search information has (so far) been agreed upon as <a href="http://www.opensearch.org/">OpenSearch</a>. Since the format is open, any browser software can implement this functionality.</p>

<div class="column half left">
<div id="attachment_192" class="wp-caption alignnone" style="width: 314px"><img src="http://nicolasschudel.name/fileadmin/articles/2009/11/firefox3_searchbar.jpg" alt="The Firefox search bar with a linked OpenSearch example on the bottom." title="Firefox 3 Search Bar" width="304" height="216" class="size-full wp-image-192" /><p class="wp-caption-text">The Firefox search bar with a linked OpenSearch example on the bottom.</p></div>
</div>
<div class="column half right">
<div id="attachment_193" class="wp-caption alignnone" style="width: 314px"><img src="http://nicolasschudel.name/fileadmin/articles/2009/11/ie8_searchbar.jpg" alt="The Internet Explorer search bar listing the OpenSearch example." title="Internet Explorer 8 Search Bar" width="304" height="216" class="size-full wp-image-193" /><p class="wp-caption-text">The Internet Explorer search bar listing an OpenSearch example.</p></div>
</div>
<h2>When to use OpenSearch</h2>
<p>OpenSearch makes sense on any site that provides search functionality. When active, Firefox and Internet Explorer include an option to add the site’s search in the search bar. </p>
<img src="http://nicolasschudel.name/fileadmin/articles/2009/11/add_search_bar_link.jpg" alt="A link indicating that the site’s search can be added to the browser search bar" title="Search Bar Link" width="244" height="208" class="alignleft size-full wp-image-189" />

<p>In my opinion, adding a notice or a link on the page to enable the search functionality is overkill for most sites. I personally wouldn’t use it for my own weblog. On the other hand, an online store with thousands of products could greatly benefit from this feature as a brand touchpoint; And informing the user about this functionality would be worthwhile. Once a user adds a site to their browsers search bar, it is a constant reminder of the site’s existence. Every time a user activates the search bar drop-down menu, that site will be there.<br /></p>

<h2>Implementation</h2>
<p>Versions of Firefox before 2.0 had a different way for adding search to the search bar. It was similar, but included a different XML structure. The data was saved in files ending with “.src”. I decided not to add this method anymore, since it is specific to a small user base (who still uses FF 1.0?).</p>

<p>Only two things need to be done to add OpenSearch:</p>

<ol>
	<li>Create an XML-File containing data about the search engine;</li>
	<li>Link to the XML-File in the head of the site’s HTML.</li>
</ol>

<p>The XML, for example, would be structured as follows; Simply adapt the URLs for your site. To get the correct search URL, perform a search on your site, copy the URL and replace your search term with “{searchTerms}”.</p>
<pre class="brush: xml">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; ?&gt;
&lt;OpenSearchDescription xmlns=&quot;http://a9.com/-/spec/opensearch/1.1/&quot;&gt;
	&lt;ShortName&gt;OpenSearch Example Name&lt;/ShortName&gt;
	&lt;Description&gt;OpenSearch Example Description&lt;/Description&gt;
	&lt;InputEncoding&gt;UTF-8&lt;/InputEncoding&gt;
	&lt;Image height=&quot;16&quot; width=&quot;16&quot; type=&quot;image/x-icon&quot;&gt;http://yoursite/favicon.ico&lt;/Image&gt;
	&lt;Url type=&quot;text/html&quot; template=&quot;http://yoursite/?s={searchTerms}&quot; /&gt;
&lt;/OpenSearchDescription&gt;</pre>
<p>This file could then be saved as “search.xml” to the root folder of the site and linked to by placing the following code in the HTML header:</p>
<pre class="brush: xml">&lt;link rel=&quot;search&quot; type=&quot;application/opensearchdescription+xml&quot; title=&quot;OpenSearch Example Title&quot; href=&quot;/search.xml&quot;&gt;</pre>
<h2>Including an OpenSearch Link to the Page</h2>
Optionally, the search plugin can be installed via a link using Javascript. Both Firefox and Internet Explorer use this:
<pre class="brush: jscript">window.external.AddSearchProvider(&quot;search.xml&quot;);</pre>
<p>An unobtrusive way to add the link, is to first check if the browser supports the AddSearchProvider function before adding it. Further details can be found on <a href="https://developer.mozilla.org/En/Adding_search_engines_from_web_pages#Browser_search_engine_capability_detection">Mozilla’s developer site</a>.</p>
<pre class="brush: xml">&lt;p id=&quot;add-opensearch&quot;&gt;OpenSearch not supported&lt;/p&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
	if (window.external &amp;&amp; (&quot;AddSearchProvider&quot; in window.external)) {
		document.getElementById(&quot;add-opensearch&quot;).innerHTML = '&lt;a href=&quot;#&quot; onclick=&quot;window.external.AddSearchProvider(\'/search.xml\')&quot;&gt;Add this site’s search to your browsers search bar.&lt;/a&gt;';
	}
&lt;/script&gt;</pre>
<h2>Possible Future Browser Features</h2>
<p>I have a hunch that the usability of web-browsing in general, would be enhanced if the browser could detect OpenSearch and enable it temporarily in its search bar. The use case could be: </p>

<p><em>A user visits a site and the browser toggles the search bar to the site’s search. Instead of looking for a search form in the page, the user enters the query via the browser. Upon leaving the site the search bar switches to the new site’s search functionality, or defaults to the preferred search engine.</em></p>

<p>The search bar could be highlighted with another color to indicate that it’s linked to the current site.</p>

<p>For this feature to be useful, OpenSearch would have to become more commonly adopted. But I think sites would follow quickly once a browser vendor starts pushing the feature.</p>

<h2>Conclusion</h2>
<p>In my opinion, the creators of OpenSearch got it right. The specification is clear and it blends in perfectly with the existing technologies, HTML and Javascript. Plus, it is quick and easy to implement. I could recommend any web content management system with search functionality to enable this feature as standard.</p>

<p>I would also recommend adding a <a href="http://en.wikipedia.org/wiki/Favicon">favicon</a> to the OpenSearch XML, so the site stands out more in the browser’s search bar.</p>

<p><strong><a href="/fileadmin/opensearch_example.zip">Download the Code</a></strong></p>]]></content:encoded>
			<wfw:commentRss>http://nicolasschudel.name/linking-search/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bridging the Gap &#8211; A Method for Managing a Physical and Online Store in Parallel</title>
		<link>http://nicolasschudel.name/bridging-the-gap/</link>
		<comments>http://nicolasschudel.name/bridging-the-gap/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 16:51:29 +0000</pubDate>
		<dc:creator>Nicolas</dc:creator>
				<category><![CDATA[E-commerce]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Zen-Cart]]></category>

		<guid isPermaLink="false">http://nicolasschudel.name/?p=164</guid>
		<description><![CDATA[Small brick-and-mortar stores run on a tight budget and often rely on open source e-commerce software for managing inventory. I describe a setup I have made for a boutique, that allows the booking of in-store purchases online.]]></description>
			<content:encoded><![CDATA[<h2>Introduction</h2>
<p>Small <a href="http://en.wikipedia.org/wiki/Brick_and_mortar_business">brick and mortar stores</a> run on a tight budget and often rely on open source software for managing inventory. I will discuss the setup I have made for a boutique that is running both a physical and online store.</p>
<h2>Scenario</h2>
<p>If you extend an existing <abbr title="brick and mortar">B&amp;M</abbr> store with an online shop, you will eventually run into a problem synchronizing your product inventory. Running two separate inventories may be a hassle, especially if you start moving products out of the store and into the online shop or vice versa.</p>
<h2>A Simple Solution</h2>
<p>Treat both inventories as one. The same item could be on display in both the physical and online stores. Better yet, use the physical store as the storage room for the online store &#8211; eliminating the need to pay rent for extra space.</p>
<div id="attachment_424" class="wp-caption alignright" style="width: 310px"><img src="http://nicolasschudel.name/fileadmin/articles//2008/02/3460102542_5cfc6c5fd2-300x199.jpg" alt="The in-store items can be sold via the online shop at the same time. (photo by Gastev on Flickr)" title="Store Inventory" width="300" height="199" class="size-medium wp-image-424" /><p class="wp-caption-text">The in-store items can be sold via the online shop at the same time. (photo by Gastev on Flickr)</p></div>
<p>The biggest hurdle, using this solution, is the booking of a physical product sale to the online database. This would have to happen <abbr title="as soon as possible">ASAP</abbr>, so the same product can’t be bought twice (by separate customers in both realms). A possible way, would be to use a computer as the point of sales and book directly to the online database. I had an iMac connected to a USB receipt printer and cash drawer. However, this setup did not last. It requires the computer to be online in order to book a purchase. What happens when the internet connection is lost with a line of customers to attend to? Murphy would predict this to happen. Even a slow internet connection lengthens the purchasing process unnecessarily, and nobody likes to wait at the register. Optimally, the <abbr title="point of sale">POS</abbr> software could have a caching mechanism and then synchronize the purchases with the online shop as soon as it’s back online.</p>
<p>I have chosen to revert to the “non-software-reliant” way of tackling this problem: Use a classic cash register for handling the money transaction. It’s fast and reliable; The cash register does not need to know anything about the inventory. During the purchase process, note the numbers of the products being sold; Using pen and paper, in your head, whatever is fast (and reliable).</p>
<p>Speaking of product numbers. The inventory in the database is usually numbered continuously (e.g. the first product in the database is number 1, then number 2 and so forth). Tag the actual product with that number. The shop I have this solution running in hasn’t yet reached 5 digit product numbers. This makes the number easier to handle than a long EAN code.</p>
<p>Soon after a physical purchase, when all customers are attended to, connect to the administration section of the online shop and enter the product numbers that have been purchased. I will later discuss a module I programmed to streamline this process.</p>
<p>Working this way, the product numbers do have to be remembered/written twice (during the purchase and while synchronizing with the database), but it improves the customer experience by removing the time it takes to handle the software.</p>
<h2>The Software</h2>
<p>I use the open source software named <a href="http://www.zen-cart.com/">Zen-Cart</a> to manage the product inventory. It was, in my opinion, the best option when I first created the shop in 2006. There are many newer and better projects out there in the meantime, such as <a href="http://www.magentocommerce.com/">Magento</a>, <a href="http://ofbiz.apache.org/">OFBiz</a>, and <a href="http://spreecommerce.com/">Spree</a>.</p>
<p>I adapted the Zen-Cart checkout process to allow client-side technologies such as Javascript and Flash to call it. I have also created a Zen-Cart module that books purchases based on a list of product numbers. It takes a few seconds to complete: for instance just enter “23, 612, 5, 1209” into the form and hit enter. Each purchase is entered into the database, as if it where bought online using the original checkout process.</p>
<p><a href="http://code.google.com/p/point-of-sale-services-zencart/">The project</a> is hosted on Google code. It will need some tweaking to work, so PHP and Javascript knowledge is required. <a href="http://point-of-sale-services-zencart.googlecode.com/files/pos-services-zencart-alpha2.zip">Download the services here</a>.</p>
<h2>Conclusion</h2>
<p>The described solution, where I moved the step of booking into the online database to the end of the purchase process, has worked well since it has been initiated in 2007. If anybody has an even simpler solution to run a physical and online store in parallel, please leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://nicolasschudel.name/bridging-the-gap/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Making Sign-Up Forms That Much Easier</title>
		<link>http://nicolasschudel.name/making-sign-up-forms-that-much-easier/</link>
		<comments>http://nicolasschudel.name/making-sign-up-forms-that-much-easier/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 13:23:22 +0000</pubDate>
		<dc:creator>Nicolas</dc:creator>
				<category><![CDATA[E-commerce]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://nicolasschudel.name/?p=23</guid>
		<description><![CDATA[<p>Having to create an account is a barrier for new users to join a site and should, therefore, be kept as easy as possible. I propose a user interface improvement that pre-fills the user’s city based on the entered postal code. In addition, I describe the programming process using PHP, MySQL and AJAX.</p>]]></description>
			<content:encoded><![CDATA[<img src="http://nicolasschudel.name/fileadmin/articles//2008/02/signup-forms.png" alt="Signup Forms" title="Signup Forms" width="180" height="180" class="alignleft size-full wp-image-334" />
<p>
I watched a <a href="http://www.youtube.com/watch?v=J00ehBG0VNg">useful presentation about form design</a> by Ryan Singer a while back and he makes a point that user input should be kept to the bare minimum when signing up. An article by Luke Wroblewski titled <a href="http://www.alistapart.com/articles/signupforms">Sign Up Forms Must Die</a> seconds the notion.
</p>
<p>
However, sometimes it is required for the user to do the leg-work and fill in lots information. Like registering at an online store for instance. Gotta at least know where to send the purchased goods! For users that don't have auto-fill plugins such as the <a href="http://toolbar.google.com/)">Google Toolbar</a>, Javascript can help filling in the necessary information - not just validating the user input. It would, for instance, make web forms simpler for users if their city would be filled in automatically upon entering their postcode. I timed myself typing my city of residence as quickly as possible and it took me about 3 seconds. So, all in theory of course, the improvement would skim roughly that much time off filling in a form. It's not a lot, but the users level of tolerance towards HTML forms isn't much either.
</p>
<p>
I'm now going to talk about how I “auto-fill” the city information based on the entered postcode in a HTML form using PHP, MySql and Javascript.
</p>
<h2>Setting Up the Database</h2>
<p>
First I needed to get the postcode information from somewhere. For Switzerland I found <a href="https://match.postmail.ch/">the data</a> via the Swiss Post.
</p>
<p>
Then I needed to get it into the database somehow. To do this I imported the downloaded text file (it is tab delimited) into Excel and then exported it again as a <abbr title="comma-separated values file format">CSV</abbr> file. I only imported the columns I needed which are the ones containing the Town name and the postcode.
</p>
<p>
Next I put on my white programming gloves and wrote a quick PHP script that connects to the database and runs two <abbr title="Structured Query Language">SQL</abbr> statements to import the <abbr title="comma-separated values file format">CSV</abbr> file. Change the variables to fit your setup and be sure to have the <abbr title="comma-separated values file format">CSV</abbr> file in the same folder when you run the following example.
</p>
<pre class="brush: php">
$link = mysql_connect('localhost', 'root', 'root') or die('Could not connect: ' . mysql_error());

mysql_query(&amp;amp;quot;CREATE DATABASE IF NOT EXISTS test
DEFAULT CHARACTER SET latin1 
COLLATE latin1_swedish_ci;&amp;amp;quot;
);

mysql_select_db('test') or die('Cannot select database');

mysql_query( &amp;amp;quot;CREATE TABLE postcodes (
code SMALLINT(4) NOT NULL ,
city VARCHAR(27) NOT NULL ,
PRIMARY KEY (code)
) ENGINE = MYISAM CHARACTER SET latin1 COLLATE latin1_swedish_ci&amp;amp;quot;
);

mysql_query( &amp;amp;quot;LOAD DATA LOCAL INFILE 'postcodes.csv'
INTO TABLE postcodes
FIELDS TERMINATED BY ','
LINES TERMINATED BY '\r\n'
(code, city);&amp;amp;quot;
);

if(mysql_error()) echo mysql_error();
else echo &amp;amp;quot;Done!&amp;amp;quot;;

mysql_close($link);
</pre>
<p>
Special characters where also an issue with importing and exporting so be sure to check the city names in the database. I used the windows text format for importing.
</p>
<h2>Creating a Web Service</h2>
<p>
We now need some server side code to provide us with the data from the database. I am using the insanely cool <abbr title="JavaScript Object Notation">JSON</abbr> gateway included with <a href="http://www.amfphp.org/">AMFPHP</a> to provide the client with data. So with AMFPHP set up I could just write a simple PosteCodeFinder class and plop it into the AMFPHP's services folder. Otherwise a simple way to get the correct name would be a PHP script like this:
</p>
<pre class="brush: php">
mysql_connect('localhost', 'root', 'root') or die('Could not connect: ' . mysql_error());
mysql_select_db('zencart_shop') or die('Cannot select database');

if (isset($_GET['code']) &amp;amp;amp;&amp;amp;amp; is_numeric($_GET['code'])) $code= $_GET['code'];
else die ('Only numbers please! The URL should look something like: postcodefinder.php?code=1000');

$query = &amp;amp;quot;SELECT city FROM postcodes WHERE code =&amp;amp;quot; . $code . &amp;amp;quot; LIMIT 0 , 1 &amp;amp;quot;;

header(&amp;amp;quot;Content-Type: text/javascript; charset=utf-8&amp;amp;quot;);
echo json_encode(utf8_encode(mysql_result(mysql_query($query), &amp;amp;quot;city&amp;amp;quot;)));
</pre>
<p>
The code connects to the database, checks the input to be numeric, retrieves the city name and spits it out as <abbr title="JavaScript Object Notation">JSON</abbr>.
</p>
<p>
I had to use utf8_encode() inside the json_encode() function because it would otherwise mess up my character encoding. "Genéve", for instance, would be truncated to "Gen". It was reported as <a href="http://bugs.php.net/bug.php?id=43941">PHP bug #43941</a>.
</p>
<h2>The Client-Side Code</h2>
<p>
On to the Javascript! I am using the Prototype library here to make programming AJAX bearable.
</p>
<pre class="brush: jscript">
FormController = {
	previousResponse: &quot;&quot;,
	
	postcodeHandler:function(el) {
		var code = parseInt(el.value);
		if (code &gt;= 1000 &amp;&amp; code &lt;= 9999 &amp;&amp; $F('country') == 204) 
	  	new Ajax.Request(
			&quot;json.php/PostCodeFinder.find/&quot; + code, 
			{
	  		method: &quot;get&quot;,
	  		onSuccess: FormController.updatePostCode.bindAsEventListener(this)
	  		}
		);
	},
	
	updatePostCode:function(transport) {
		var jsonObj = eval(&quot;(&quot; + transport.responseText + &quot;)&quot;);
		if (jsonObj != undefined &amp;&amp; ($F('city') == &quot;&quot; || $F('city') == previousResponse)) {
	   	$('city').value = jsonObj;
			this.previousResponse = jsonObj;
	   }
	}
}

Event.observe(
	window,
	'load',
	function() {
		new Form.Element.Observer('postcode', 1, FormController.postcodeHandler.bindAsEventListener(this));
	}
)
</pre>
<p>
<a href="/fileadmin/postcodefinder.zip">Download all the code here.</a>
</p>
<h2>Conclusions</h2>
<h3>Usability Gain</h3>
<p>
Considering the amount of time it took me to implement, I can only recommend the postcode optimization as a final improvement to a form.   Other factors, as mentioned in Singer's video for instance, should be considered first to get the most bang for the buck.
</p>
<h3>Character Encoding</h3>
<p>
Most of my time was not spent with programming the scripts but with playing with the character encoding. Having UTF-8 all the way through form the original text file, to the database, to the PHP script, to the client side Javascript and finally the HTML document itself was easier said than done. I found a <a href="http://www.kerstner.at/downloads/utf8_webapplications_v0.2.pdf">PDF on the UTF-8 development practices</a> by Matthias Kerstener, that helped out with some of the issues. Still, character encoding issues makes me not want to be a web developer any more.
</p>]]></content:encoded>
			<wfw:commentRss>http://nicolasschudel.name/making-sign-up-forms-that-much-easier/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
