<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- generator="FeedCreator 1.7.2" -->
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://www.devclicks.net/">
        <title>Devclicks.com </title>
        <description>Links for Web Developers</description>
        <link>http://www.devclicks.com</link>
       <dc:date>2008-03-29T15:45:56+01:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://www.devclicks.com/comments.php?click_id=152"/>
                <rdf:li rdf:resource="http://www.devclicks.com/comments.php?click_id=151"/>
                <rdf:li rdf:resource="http://www.devclicks.com/comments.php?click_id=150"/>
                <rdf:li rdf:resource="http://www.devclicks.com/comments.php?click_id=149"/>
                <rdf:li rdf:resource="http://www.devclicks.com/comments.php?click_id=148"/>
                <rdf:li rdf:resource="http://www.devclicks.com/comments.php?click_id=147"/>
                <rdf:li rdf:resource="http://www.devclicks.com/comments.php?click_id=146"/>
                <rdf:li rdf:resource="http://www.devclicks.com/comments.php?click_id=145"/>
                <rdf:li rdf:resource="http://www.devclicks.com/comments.php?click_id=144"/>
                <rdf:li rdf:resource="http://www.devclicks.com/comments.php?click_id=143"/>
            </rdf:Seq>
        </items>
    </channel>
    <item rdf:about="http://www.devclicks.com/comments.php?click_id=152">
        <dc:format>text/html</dc:format>
        <title>The Principles of OOP</title>
        <link>http://www.devclicks.com/comments.php?click_id=152</link>
        <description>One thing that really annoys me about articles and tutorials on OOP that I have found on the web and in books - they all talk about creating a class called 'shape' with various subclasses for 'square', 'circle', 'triangle' etc. This is of absolutely no use when I want to build a system to deal with real-world objects such as 'customer', 'product' and 'invoice' which have corresponding database tables. This has often led me to believe that OOP is therefore unsuitable for building common-or-garden business systems as it appears to have been designed for nothing but graphical applications.</description>
    </item>
    <item rdf:about="http://www.devclicks.com/comments.php?click_id=151">
        <dc:format>text/html</dc:format>
        <title>model/view/controller responsibilities</title>
        <link>http://www.devclicks.com/comments.php?click_id=151</link>
        <description>You may be familiar with MVC, but during actual implementation the borders between the model, view, and controller can easily become fuzzy. This article gives a very clear description from the incoming request to the updated view, and then goes on to include numerous examples.</description>
    </item>
    <item rdf:about="http://www.devclicks.com/comments.php?click_id=150">
        <dc:format>text/html</dc:format>
        <title>PHP goes to the enterprise level</title>
        <link>http://www.devclicks.com/comments.php?click_id=150</link>
        <description>Vulcan Logic's Script Running Machine, SRM, was first conceived in the autumn of 2000. It is designed to solve some of the problems often encountered within web scripting languages (i.e. PHP) that are a result of the stateless nature of the HTTP protocol.</description>
    </item>
    <item rdf:about="http://www.devclicks.com/comments.php?click_id=149">
        <dc:format>text/html</dc:format>
        <title>Seven ways to toggle an element with JavaScript</title>
        <link>http://www.devclicks.com/comments.php?click_id=149</link>
        <description>There are litterally an unlimitted number of ways to toggle an element’s display with JavaScript. Some, more useful than others. Dating back to the late nineties, toggling is perhaps the oldest trick in the book within JavaScript development. However, to this day, it still proves itself useful as hiding/showing elements can improve user interaction (when done tastefully).

Anyway, here are seven ways toward achieving just that.</description>
    </item>
    <item rdf:about="http://www.devclicks.com/comments.php?click_id=148">
        <dc:format>text/html</dc:format>
        <title>PHP Logging Class</title>
        <link>http://www.devclicks.com/comments.php?click_id=148</link>
        <description>Very Cool class that logs different actions users make in your web application.</description>
    </item>
    <item rdf:about="http://www.devclicks.com/comments.php?click_id=147">
        <dc:format>text/html</dc:format>
        <title>Divs instead of tables</title>
        <link>http://www.devclicks.com/comments.php?click_id=147</link>
        <description>One of the complicated things when we are doing a design is to doing it only using divs and not tables. Some of us always use tables. And why? because it’s simple? Maybe using div’s is not so dificult after all.</description>
    </item>
    <item rdf:about="http://www.devclicks.com/comments.php?click_id=146">
        <dc:format>text/html</dc:format>
        <title>PHP6, Unicode and TextIterator features</title>
        <link>http://www.devclicks.com/comments.php?click_id=146</link>
        <description>I’ve just install the last version of PHP6 dev and I’ve decided to test the famous new feature, the PHP Unicode Support. I will not explain new things about PHP6 or Unicode or TextIterator, it’s just my discoveries test on this features.</description>
    </item>
    <item rdf:about="http://www.devclicks.com/comments.php?click_id=145">
        <dc:format>text/html</dc:format>
        <title>Url Routing with PHP - Part One</title>
        <link>http://www.devclicks.com/comments.php?click_id=145</link>
        <description>Most PHP frameworks use some variation of the front controller pattern to centralize common code and logic. There are advantages and disadvantages to this. I am going to ignore those for now. In fact the first part of this series will explore a simple procedural URL routing method that contains many of the disadvantages. In later articles we will build upon this basis and address the disadvantages.</description>
    </item>
    <item rdf:about="http://www.devclicks.com/comments.php?click_id=144">
        <dc:format>text/html</dc:format>
        <title>Fading between two images with MooTools</title>
        <link>http://www.devclicks.com/comments.php?click_id=144</link>
        <description>Fading between two images is actually a fairly simple task with MooTools. The first thing you need to do is setup up two DIV tags that are absolutely positioned over one another inside another DIV tag that uses default placement. Then you place your image tags inside each of the absolutely positioned DIV tags. Each of the DIV tags needs to have an id attribute so they can be referenced in your javascript code.</description>
    </item>
    <item rdf:about="http://www.devclicks.com/comments.php?click_id=143">
        <dc:format>text/html</dc:format>
        <title>Clean up your code with: Ternary Operator</title>
        <link>http://www.devclicks.com/comments.php?click_id=143</link>
        <description>The Ternary Operator is a comparison operator commonly found in C-Style languages including PHP. It can end up saving you a bit of time and lines of code, so I thought I would show you.

Here is the Format: ( expr1 ) ? ( expr2 ) : (expr3)</description>
    </item>
</rdf:RDF>
