<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE rss [<!ENTITY % HTMLlat1 PUBLIC "-//W3C//ENTITIES Latin 1 for XHTML//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent">]>
<rss version="2.0" xml:base="http://evolt.org">
<channel>
 <title>evolt.org - Code</title>
 <link>http://evolt.org/taxonomy/term/17/0</link>
 <description></description>
 <language>en-GB</language>
<item>
 <title>A Very Simple and Effective Captcha</title>
 <link>http://evolt.org/simple-captcha</link>
 <description>&lt;p&gt;I have a very simple anti-bot spam technique that works extremely well. It requires no javascript, cookies or complicated server weirdness, is fully accessible, has no hidden fields, has negligible overhead and takes just a moment or two to implement. It requires that the user fill out one field with a number, so it&#039;s good for anti-bot but will not prevent human spammers. In three years, I have yet to receive &lt;em&gt;any&lt;/em&gt; spam on any of the many sites that I have installed this on. Sites that were being bombarded with hundreds of spams daily suddenly became quiet and good emails get though.&lt;/p&gt;</description>
 <category domain="http://evolt.org/code">Code</category>
 <pubDate>Sun, 09 Mar 2008 05:09:24 -0500</pubDate>
</item>
<item>
 <title>Search Engine Friendly URLs with IIS and Classic ASP</title>
 <link>http://evolt.org/search_engine_friendly_urls_with_iis_and_classic_asp</link>
 <description>&lt;p&gt;A few years ago, I needed a Content Management System (CMS) for my site &lt;a href=&quot;http://www.voorbeginners.info/&quot; target=&quot;_blank&quot;&gt;Voor Beginners&lt;/a&gt; and its English counterpart &lt;a href=&quot;http://www.forbeginners.info/&quot; target=&quot;_blank&quot;&gt;For Beginners&lt;/a&gt;. One of the requirements was, that the CMS should use &quot;search engine friendly&quot; URLs. This is fairly easy to accomplish with Linux and Apache; however, another requirement was that the CMS should run on the Windows platform... In this article, I will show how you can &quot;simulate&quot; the effects of .htaccess and mod_rewrite using Microsoft&#039;s Internet Information Server (IIS) and classic ASP.&lt;/p&gt;</description>
 <category domain="http://evolt.org/backend">Backend</category>
 <category domain="http://evolt.org/code">Code</category>
 <category domain="http://evolt.org/site_development">Site Development</category>
 <category domain="http://evolt.org/software">Software</category>
 <pubDate>Wed, 14 Nov 2007 14:42:00 -0600</pubDate>
</item>
<item>
 <title>Failover Database Connection with PHP + mySQL</title>
 <link>http://evolt.org/failover-database-connection-with-php-mysql</link>
 <description>&lt;p&gt;You want to connect to a mySQL database? Well, then it&#039;s likely you already know how. But how about connecting a second database if the first one fails? No? This could be a life saver. &lt;/p&gt;</description>
 <category domain="http://evolt.org/code">Code</category>
 <pubDate>Sun, 20 May 2007 07:04:07 -0500</pubDate>
</item>
<item>
 <title>Making websites: what&#039;s your target audience ?</title>
 <link>http://evolt.org/making_websites_whats_your_target_audience</link>
 <description>If putting your business online means maximising the outreach, and a global audience, then Web Standards just add sense to your sensibility. A browser is never going to buy anything from you. The users should always get your content, no matter what platform they use, what media device they use, or wherever they might be.
There should be no reason that a business turns back even one potential customer.</description>
 <category domain="http://evolt.org/code">Code</category>
 <category domain="http://evolt.org/site_development">Site Development</category>
 <pubDate>Sun, 15 Apr 2007 10:20:00 -0500</pubDate>
</item>
<item>
 <title>Working With Fractions In CSS and PHP</title>
 <link>http://evolt.org/working-with-fractions-in-css-and-php</link>
 <description>&lt;p&gt;Most of us are uncomfortable with using fractions when writting programs. If we encounter a fraction, we will first convert it into a floating point number (with decimals) and proceed from there. Most programming languages would prefer to use 0.5 as opposed to 1/2 because the later conflicts with the syntax of the languages. In this article, I will discuss an approach to working with fractions in PHP and CSS in one of the projects that I have done.
&lt;/p&gt;</description>
 <category domain="http://evolt.org/code">Code</category>
 <pubDate>Mon, 02 Apr 2007 17:17:50 -0500</pubDate>
</item>
<item>
 <title>Quick Calendar Using AJAX and PHP</title>
 <link>http://evolt.org/quick_calendar_using_ajax_and_php</link>
 <description>&lt;p&gt;Online calendars are often used in many web applications. Though popular, the logic behind creating a calendar can be scary especially for those who are new to programming. There are many web calendars in the market but some of them are quite complicated. If we are not able to understand the code, it becomes harder for us to customise the calendar to fit into our existing application. As such, we need to create a calendar that can plug itself into any system seamlessly without problems. Whether we are using wordpress, mambo or drupal, we should only need to insert one line into our code for the calendar to work.&lt;/p&gt;</description>
 <category domain="http://evolt.org/code">Code</category>
 <pubDate>Sun, 15 Apr 2007 08:14:06 -0500</pubDate>
</item>
<item>
 <title>PHP Localization with TMX standard</title>
 <link>http://evolt.org/PHP-Localization-with-TMX-standard</link>
 <description>One of the main concerns of internationalization consists of separating the main source code from the texts, the labels, the messages and all the other objects related to the specific language in use. This article briefly explains the TMX standard and presents a simple TMX PHP bridge.</description>
 <category domain="http://evolt.org/code">Code</category>
 <pubDate>Sat, 22 Apr 2006 15:27:49 -0500</pubDate>
</item>
<item>
 <title>Securing Forms - Random Image</title>
 <link>http://evolt.org/securing_forms_random_image</link>
 <description>You might have noticed those &quot;Enter text as seen on image above&quot; registration-forms. This article covers how you make your own, quick and simple!</description>
 <category domain="http://evolt.org/code">Code</category>
 <pubDate>Mon, 23 Jan 2006 14:27:03 -0600</pubDate>
</item>
<item>
 <title>These Things I Know, PHP Tips</title>
 <link>http://evolt.org/these-things-i-know-php-tips</link>
 <description>There is more than one way to achieve the same result when programming in PHP.  There are many shortcuts I wish someone had explained to me when I began learning the language. Here are my favorites.</description>
 <category domain="http://evolt.org/code">Code</category>
 <pubDate>Mon, 05 Dec 2005 15:43:09 -0600</pubDate>
</item>
<item>
 <title>ASP BreadCrumb Class</title>
 <link>http://evolt.org/asp-breadcrumb-class</link>
 <description>This is an ASP class that generates a breadcrumb style navigation based on the website&#039;s directory structure. It is an implementation of the BreadCrumbs PHP Class @ www.backettcase.com and some code &#039;borrowed&#039; from Adrian Roselli&#039;s &quot;Breadcrumbs for Those Using ASP&quot; on this very site.</description>
 <category domain="http://evolt.org/code">Code</category>
 <pubDate>Thu, 22 Sep 2005 06:54:00 -0500</pubDate>
</item>
<item>
 <title>Java Localization with TMX standard</title>
 <link>http://evolt.org/Java-Localization-with-TMX-standard</link>
 <description>One of the main concerns of internationalization consists of separating the main source code from the texts, the labels, the messages and all the other objects related to the specific language in use. This article briefly explain the TMX standard and a simple TMX Java bridge.</description>
 <category domain="http://evolt.org/code">Code</category>
 <enclosure url="system/files?file=sample_tmx.xml.txt" length="602" type="text/plain" />
 <pubDate>Mon, 31 Oct 2005 16:27:06 -0600</pubDate>
</item>
<item>
 <title>Why standards-compliant HTML matters</title>
 <link>http://evolt.org/node/60446</link>
 <description>High-quality, compact, elegant and standards-compliant code is one of the most obvious tools of good web development nowadays. However, it is sometimes difficult to convince the client to invest in that kind of quality. Here are some elements that can be used to build a case: outlining abuse patterns and their reasons, the fundamental problem with creative use of technologies, and its consequences.</description>
 <category domain="http://evolt.org/code">Code</category>
 <pubDate>Tue, 15 Feb 2005 02:28:13 -0600</pubDate>
</item>
<item>
 <title>PHP Login System with Admin Features</title>
 <link>http://evolt.org/PHP-Login-System-with-Admin-Features</link>
 <description>&lt;p&gt;Describes a complete PHP Login System with full Administrative Features that uses a MySQL database and can be easily integrated into any PHP/MySQL website.&lt;/p&gt;</description>
 <category domain="http://evolt.org/code">Code</category>
 <enclosure url="system/files?file=Login_System_v.2.0.zip" length="23380" type="application/zip" />
 <pubDate>Tue, 12 Sep 2006 05:39:02 -0500</pubDate>
</item>
<item>
 <title>Ten CSS tricks you may not know</title>
 <link>http://evolt.org/ten-css-tricks-you-may-not-know</link>
 <description>With so many different ways of using CSS some important tricks and techniques may have passed you by. See how many of the ten you already know and maybe learn something new!</description>
 <category domain="http://evolt.org/code">Code</category>
 <pubDate>Mon, 31 Oct 2005 16:52:20 -0600</pubDate>
</item>
<item>
 <title>A touch of class - skinable Javascript</title>
 <link>http://evolt.org/node/60326</link>
 <description>By now, almost all web developers have realised that it does make sense to separate structure from presentation and behaviour. Sadly enough, not too many openly available Javascripts do the same. Learn how to enhance markup while keeping the visuals in the CSS rather than in Javascript variables. Create scripts that others can use without messing with your code.</description>
 <category domain="http://evolt.org/code">Code</category>
 <pubDate>Mon, 15 Aug 2005 05:42:18 -0500</pubDate>
</item>
</channel>
</rss>
