<?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>strictlyPHP</title>
	<atom:link href="http://www.strictlyphp.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.strictlyphp.com/blog</link>
	<description>web development &#38; web analytics</description>
	<lastBuildDate>Mon, 15 Mar 2010 08:21:25 +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>Disable SAP GUI sound</title>
		<link>http://www.strictlyphp.com/blog/2010/03/15/disable-sap-gui-sound/</link>
		<comments>http://www.strictlyphp.com/blog/2010/03/15/disable-sap-gui-sound/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 08:21:25 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[sap]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.strictlyphp.com/blog/?p=1280</guid>
		<description><![CDATA[
If you&#8217;ve ever worked with SAP, the chances are you have been &#8220;amazed&#8221; by its GUI more than once.
Besides a usability experience dating back from the first half of the previous century, the default sounds on every interaction with the GUI can be very anoying (at a minimum).
How to disable it:

Fire up the GUI and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1283" style="border-width: 0; float: left;" title="sap" src="http://www.strictlyphp.com/blog/wp-content/uploads/2010/03/sap.png" alt="" width="180" height="89" /></p>
<p><em>If you&#8217;ve ever worked with <a href="http://en.wikipedia.org/wiki/MySAP_ERP" target="_blank">SAP</a>, the chances are you have been &#8220;amazed&#8221; by its GUI more than once.</em></p>
<p>Besides a usability experience dating back from the first half of the previous century, the default sounds on every interaction with the GUI can be very anoying (at a minimum).</p>
<p>How to <strong>disable it</strong>:</p>
<ul>
<li>Fire up the GUI and sign in.</li>
<li>On the main toolbar, click the last icon (Adjust local layout &#8211; what did you expect).</li>
<li>In the dropdown menu, select the second option (Configure New Visual Design&#8230; &#8211; of course).</li>
<li>Select Sound &#8211; Off.</li>
</ul>
<p>Once again, it proved you should really stay away from the alcohol. Looking for something like &#8220;Settings&#8221; under de main &#8220;System&#8221; menu&#8230; you s*****.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strictlyphp.com/blog/2010/03/15/disable-sap-gui-sound/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Indexes on multiple columns in MySQL</title>
		<link>http://www.strictlyphp.com/blog/2010/02/11/indexes-on-multiple-columns-in-mysql/</link>
		<comments>http://www.strictlyphp.com/blog/2010/02/11/indexes-on-multiple-columns-in-mysql/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 13:40:17 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.strictlyphp.com/blog/?p=1277</guid>
		<description><![CDATA[When optimizing queries, you don&#8217;t need to be reminded that indexes play an important role.
Something to remember though: in real-world examples a multi-column index often outperforms multiple indexes.
So it can be worth changing something like:
INDEX `index1`(`column1`),
INDEX `index2`(`column2`)
to
INDEX `index1`(`column1`, `column2`)
MySQL 5.0 introduced an internal method called &#8220;Index Merge&#8221; which merges multiple indexes when querying a table [...]]]></description>
			<content:encoded><![CDATA[<p><em>When optimizing queries, you don&#8217;t need to be reminded that indexes play an important role.</em></p>
<p>Something to remember though: in real-world examples <a href="http://www.mysqlperformanceblog.com/2008/08/22/multiple-column-index-vs-multiple-indexes/" target="_blank">a multi-column index often outperforms multiple indexes</a>.<br />
So it can be worth changing something like:</p>
<pre>INDEX `index1`(`column1`),
INDEX `index2`(`column2`)</pre>
<p>to</p>
<pre>INDEX `index1`(`column1`, `column2`)</pre>
<p>MySQL 5.0 introduced an internal method called &#8220;<a href="http://dev.mysql.com/doc/refman/5.0/en/index-merge-optimization.html" target="_blank">Index Merge</a>&#8221; which merges multiple indexes when querying a table (if applicable) but I haven&#8217;t seen this being used that often. On the contrarry, <strong>MySQL often picks one of the indexes </strong>and in these scenario&#8217;s it is especcialy usefull to have one multi-column index.</p>
<p>As always: use <a href="http://dev.mysql.com/doc/refman/5.0/en/using-explain.html" target="_blank">EXPLAIN</a> to see what can be improved.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strictlyphp.com/blog/2010/02/11/indexes-on-multiple-columns-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search keyword tagcloud</title>
		<link>http://www.strictlyphp.com/blog/2010/01/15/search-keyword-tagcloud/</link>
		<comments>http://www.strictlyphp.com/blog/2010/01/15/search-keyword-tagcloud/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 19:14:33 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[google analytics]]></category>

		<guid isPermaLink="false">http://www.strictlyphp.com/blog/?p=1250</guid>
		<description><![CDATA[Ever wondered what the prominent keywords were that your visitors use to reach your site?
Google Analytics will happily show you those. With the amount of visitors per keyword of course (amongst many other metrics).
But what if you wanted to know which separate words were most used throughout all search queries? Create a tagcloud:

Go to the [...]]]></description>
			<content:encoded><![CDATA[<p><em>Ever wondered what the prominent keywords were that your visitors use to reach your site?</em></p>
<p><a href="http://www.google.com/analytics/" target="_blank">Google Analytics</a> will happily show you those. With the amount of visitors per keyword of course (amongst many other metrics).</p>
<p>But what if you wanted to know which separate words were most used throughout all search queries? Create a tagcloud:</p>
<ol style="margin-left: 25px; line-height: 120%;">
<li>Go to the <strong>Traffic sources</strong> &gt;&gt; <strong>Keywords report</strong>.</li>
<li>Be sure to select a good amount of visits by stretching the date range to e.g. a year.</li>
<li>Append &amp;limit=50000 at the end of the URL. This is some hack to get all keywords in the export and be sure to append it to the <em>end</em>, not before the hash (#) character or anything.</li>
<li>Click the export button at the top of the report and click CSV.</li>
<li>Open the file in an application that understands the standard CSV-format. I have to open the file in a text-editor and replace all comma&#8217;s with semicolon&#8217;s before I can open it in Excel.</li>
<li>Copy all keywords (not the numbers behind them or the general data above them).</li>
<li>Visit a <a href="http://www.wordle.net/create" target="_blank">tagcloud creation website</a> and paste the data.</li>
</ol>
<p>You can argue that the number of visitors per keyword is not taken into account but in the end that may not be what you are looking for. In case you want to know which keywords are most often used in different search phrases, this creates a pretty good image.</p>
<p>Below is the result of all searches that reached this website in 2009:</p>
<p style="text-align: center;"><a href="http://www.strictlyphp.com/blog/wp-content/uploads/2010/01/strictlyphp-search-keyword-tagcloud-2009.jpg"><img class="alignnone size-medium wp-image-1267" style="float: none;" title="strictlyphp-search-keyword-tagcloud-2009" src="http://www.strictlyphp.com/blog/wp-content/uploads/2010/01/strictlyphp-search-keyword-tagcloud-2009-300x177.jpg" alt="" width="300" height="177" /></a><br />
<span style="font-size: x-small;">(click on the image to enlarge)</span></p>
<p style="text-align: left;">Thanks to Avinash Kaushik for another great post about <a href="http://www.kaushik.net/avinash/2009/12/analysis-ninjas-move-top-ten-find-love-insights.html" target="_blank">Analytics Insights</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strictlyphp.com/blog/2010/01/15/search-keyword-tagcloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Take the risk</title>
		<link>http://www.strictlyphp.com/blog/2010/01/12/take-the-risk/</link>
		<comments>http://www.strictlyphp.com/blog/2010/01/12/take-the-risk/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 10:24:35 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[small business]]></category>

		<guid isPermaLink="false">http://www.strictlyphp.com/blog/?p=1243</guid>
		<description><![CDATA[
Want to start your own business and work from home?
Inc.com published a list of 9 examples of people who started a successful business from their home.
One of them is a self employed insurance broker who offers live webcam chat through his website. You do not need to know anything about insurance to imagine this can [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.strictlyphp.com/blog/wp-content/uploads/2010/01/work-from-home.jpg"><img class="alignnone size-full wp-image-1246" title="work-from-home" src="http://www.strictlyphp.com/blog/wp-content/uploads/2010/01/work-from-home.jpg" alt="" width="200" height="146" /></a></p>
<p><em>Want to start your own business and work from home?</em></p>
<p><strong>Inc.com</strong> published a list of <a href="http://www.inc.com/ss/9-businesses-you-can-start-your-pajamas-2010" target="_blank">9 examples</a> of people who started a successful business from their home.</p>
<p>One of them is a self employed insurance broker who offers live webcam chat through his website. You do not need to know anything about insurance to imagine this can have a positive effect on customers who do not have time to make an appointment with him.</p>
<p>Enjoy the read!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strictlyphp.com/blog/2010/01/12/take-the-risk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Looking back on 2009, outlook on 2010</title>
		<link>http://www.strictlyphp.com/blog/2010/01/08/looking-back-on-2009-outlook-on-2010/</link>
		<comments>http://www.strictlyphp.com/blog/2010/01/08/looking-back-on-2009-outlook-on-2010/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 23:02:39 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://www.strictlyphp.com/blog/?p=1181</guid>
		<description><![CDATA[Like everyone has done these days and some (like me) are still doing: a random review of 2009 and a preview on 2010.
2009 (in order of magnitude)

My first ever energy-efficient lamp broke (I must have been using it about 7 or 8 years). So these things can die!
The basement scene with John Malkovich and the fitness [...]]]></description>
			<content:encoded><![CDATA[<p>Like everyone has done these days and some (like me) are still doing: a random review of 2009 and a preview on 2010.</p>
<h3>2009 <span style="font-size: x-small;">(in order of magnitude)</span></h3>
<ul>
<li>My first ever <a href="http://en.wikipedia.org/wiki/Compact_fluorescent_lamp" target="_blank">energy-efficient lamp</a> broke (I must have been using it about 7 or 8 years). So these things can die!</li>
<li>The basement scene with John Malkovich and the fitness owner in <a href="http://www.imdb.com/title/tt0887883/" target="_blank">Burn After Reading</a> was probably the best movie scene I ever saw.</li>
<li>Together with Jan from <a href="http://www.jama.be/" target="_blank">JAMA Webcreations</a> I built the most user friendly <a href="http://www.123website.be/" target="_blank">content management system</a> in the world. Be sure to <a href="http://www.123website.be/contact" target="_blank">contact</a> Jan for a demo and partner with us.</li>
<li>I got hooked (if I wasn&#8217;t already) on a lot of Google applications: Analytics, Apps, AdWords, Mobile Gmail and Wave.</li>
</ul>
<h3><strong>2010</strong></h3>
<ul>
<li>While I must admit it isn&#8217;t that hard as some people want it to be, I will <strong>stop testing projects in Internet Explorer 6</strong>. It doesn&#8217;t make that big of a difference since IE 7 often has the same quirks.</li>
<li>I plan to move all hosting to <a href="http://www.linode.com/?r=408d1cd9a3c5a16fc3a5202370869dfb8bc78fee" target="_blank">Linode</a>. Their service <a href="http://journal.uggedal.com/vps-performance-comparison" target="_blank">just can&#8217;t get better</a>. E-mail accounts will probably be handled by <a href="http://www.google.com/apps/intl/en/group/index.html" target="_blank">Google Apps</a>.</li>
<li>I hope to (re)launch a considerable amount of the projects I work on (on a Linode of course).</li>
<li>Maybe I should also try to get the <a href="http://www.zend.com/services/certification/framework/" target="_blank">Zend Framework certification</a> but I also want to take the <a href="http://google.starttest.com/" target="_blank">Google AdWords and Analytics exams</a>.</li>
</ul>
<p><strong>Have fun in 2010!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.strictlyphp.com/blog/2010/01/08/looking-back-on-2009-outlook-on-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redirecting in Zend Framework</title>
		<link>http://www.strictlyphp.com/blog/2009/12/30/redirecting-in-zend-framework/</link>
		<comments>http://www.strictlyphp.com/blog/2009/12/30/redirecting-in-zend-framework/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 11:08:27 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[zend framework]]></category>

		<guid isPermaLink="false">http://www.strictlyphp.com/blog/?p=1208</guid>
		<description><![CDATA[
While working with Zend Framework, you must have asked yourself &#8220;Is there an easy way to redirect to another controller/action?&#8221;
Well, there is. When redirecting inside a controller, the first method we think about will probably be $this-&#62;_redirect(). This is quick, but it only accepts a URL. This means you have to create a URL to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1210" title="redirect" src="http://www.strictlyphp.com/blog/wp-content/uploads/2009/12/redirect.jpg" alt="" width="100" height="100" /></p>
<p><em>While working with Zend Framework, you must have asked yourself &#8220;Is there an easy way to redirect to another controller/action?&#8221;</em></p>
<p>Well, there is. When redirecting inside a controller, the first method we think about will probably be $this-&gt;_redirect(). This is quick, but it only accepts a URL. This means you have to create a URL to a specific route yourself. Either with the $this-&gt;view-&gt;url() URL view helper (which is not a pretty sight) or by assembling a route.</p>
<p>Yes, there is also $this-&gt;_forward() which sends your request to another controller/action, but it also goes through all init() logic again and forwarding isn&#8217;t suited for every situation (e.g. after a form POST).</p>
<p>But there is a far more <strong>flexible</strong> way: the less known <a href="http://framework.zend.com/manual/en/zend.controller.actionhelpers.html#zend.controller.actionhelpers.redirector" target="_blank">Redirector action helper</a>. Actually, $this-&gt;_redirect() uses it, but it provides easier ways to redirect to a specific route:</p>
<pre>$redirector = $this-&gt;getHelper('Redirector');
$params = array(
	'controller' =&gt; 'my-controller',
	'action' =&gt; 'my-action',
	'other-param' =&gt; 'value'
);
$redirector-&gt;gotoRoute($params, 'my-route', true);</pre>
<p>Its usage will be self explanatory (actually the parameters are the same as the URL view helper), but I want to add a little note about the last parameter (which the URL view helper also accepts): if true, it &#8220;resets&#8221; your route, meaning all other parameters currently in your Request object are removed. This implies that when setting it to false (which is the default) parameters you have in your &#8220;current URL&#8221; will be reused (unless overwritten).<br />
This can be particularly useful when passing search query, paging,&#8230; parameters from one page to another.</p>
<p>So, next time you need to redirect: pull out the Redirector action helper.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strictlyphp.com/blog/2009/12/30/redirecting-in-zend-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stay informed on Zend Framework</title>
		<link>http://www.strictlyphp.com/blog/2009/12/29/stay-informed-on-zend-framework/</link>
		<comments>http://www.strictlyphp.com/blog/2009/12/29/stay-informed-on-zend-framework/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 12:09:21 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[zend framework]]></category>

		<guid isPermaLink="false">http://www.strictlyphp.com/blog/?p=1197</guid>
		<description><![CDATA[
When developing with Zend Framework, it is difficult to keep track of new versions, new components, changes to components, roadmaps,&#8230;
After &#8220;Beginning Zend Framework&#8220;, you&#8217;ll need to stay current too. You can of course read everything on the wiki, but if you use a RSS reader (if not, you really need to) add this feed.
It provides [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1200" style="float: right; border-width: 0; margin: 0 0 15px 20px;" title="Zend Framework" src="http://www.strictlyphp.com/blog/wp-content/uploads/2009/12/zend-framework.gif" alt="" width="123" height="23" /></p>
<p><em>When developing with Zend Framework, it is difficult to keep track of new versions, new components, changes to components, roadmaps,&#8230;</em></p>
<p>After &#8220;<a href="http://www.strictlyphp.com/blog/2009/12/29/beginning-zend-framework/">Beginning Zend Framework</a>&#8220;, you&#8217;ll need to <strong>stay current</strong> too. You can of course read everything on the <a href="http://framework.zend.com/wiki/" target="_blank">wiki</a>, but if you use a RSS reader (if not, you <a href="http://reader.google.com/" target="_blank">really</a> need to) add <a href="http://framework.zend.com/wiki/createrssfeed.action?types=page&amp;types=blogpost&amp;types=comment&amp;statuses=created&amp;statuses=modified&amp;spaces=conf_all&amp;labelString=&amp;rssType=rss2&amp;maxResults=10&amp;timeSpan=5&amp;publicFeed=true&amp;title=Zend+Framework+Wiki+RSS+Feed" target="_blank">this feed</a>.</p>
<p>It provides a great overview of all proposals and discussions concerning components. Even if you don&#8217;t have time to follow up on this each day (there can be a lot of comments), by looking at the titles of the posts you can have an idea of what is going on.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strictlyphp.com/blog/2009/12/29/stay-informed-on-zend-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beginning Zend Framework</title>
		<link>http://www.strictlyphp.com/blog/2009/12/29/beginning-zend-framework/</link>
		<comments>http://www.strictlyphp.com/blog/2009/12/29/beginning-zend-framework/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 11:51:15 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[zend framework]]></category>

		<guid isPermaLink="false">http://www.strictlyphp.com/blog/?p=1184</guid>
		<description><![CDATA[One of the consequences of the huge popularity of Zend Framework is that everyone who is using PHP in one way or another has at least thought about using it (because it all sounds so good and, possibly, easy).
But different people need different approaches to start developing with Zend Framework. And the publishing companies that [...]]]></description>
			<content:encoded><![CDATA[<p><em><span>One of the consequences of the huge popularity of <a href="http://framework.zend.com/" target="_blank"><span>Zend</span> Framework</a> is that everyone who is using PHP in one way or another has at least thought about using it (because it all sounds so good and, possibly, easy).</span></em></p>
<p><span>But different people need different approaches to start developing with <span>Zend</span> Framework. And the publishing companies that published the first books about <span>Zend</span> Framework (and apparently also the second wave of books) tend to </span><strong>forget about some groups of users</strong>. A little summary (in no way meant to offend):</p>
<h3>Developers with a different background <span style="font-size: x-small;">(another programming language)</span></h3>
<p>Depending on the background, migration will not be that hard. I can imagine a .NET or Java developer easily gets the principles of a framework (and hopefully also understands OO programming). Ruby or Python will be even easier (but why on earth would they migrate?).</p>
<h3>The average PHP developer <span style="font-size: x-small;"><span>(not already using <span>Zend</span> Framework of course)</span></span></h3>
<p><span>If the <a href="http://framework.zend.com/manual/" target="_blank"><span>Zend</span> Framework manual</a> is not sufficient for this group, there certainly are </span><a href="http://www.amazon.com/gp/product/1847194222?ie=UTF8&amp;tag=str0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=1847194222" target="_blank">a</a> <a href="http://www.amazon.com/gp/product/0615303889?ie=UTF8&amp;tag=str0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0615303889" target="_blank">lot</a> <a href="http://www.amazon.com/gp/product/1430219068?ie=UTF8&amp;tag=str0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=1430219068" target="_blank">of</a> <a href="http://www.amazon.com/gp/product/1430218258?ie=UTF8&amp;tag=str0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=1430218258" target="_blank">books</a> available that eliminate all barriers. Of course look for the most recent books, since a lot of versions have been announced the last 2 years and, to be honest, some of the early books were published in a hurry to benefit from being among the first.</p>
<h3><span><span>Dreamweaver</span> users </span><span style="font-size: x-small;"><span>(often called &#8220;<span>webdesigners</span>&#8220;)</span></span></h3>
<p><span>Yes, this group is also (willingly or unwillingly) pushed to, at least, have a look at <span>Zend</span> Framework. And to be honest, at the moment, I wouldn&#8217;t know how they can prevent themselves from creating something that isn&#8217;t maintainable in the years to come.</span><br />
Zend Framework (or any other framework in this case) promises a lot of good things (which may lack in the current PHP snippets, Smarty templates, open source CMS,&#8230; now being used). Starting with the manual certainly is tricky. Getting a thorough grip of PHP/OO concepts may sound boring, but you need it.<br />
As a suggestion: don&#8217;t set too high expectations and take your time. It may be useful to force yourself to get a PHP certification. Not because you need it, but because it forces you to learn/refresh the PHP basics.</p>
<p>Also: be honest to yourself. If you notice OO concepts don&#8217;t interest you, think about it and maybe try something else. Another lightweight framework like <a href="http://codeigniter.com/" target="_blank"><span><span>CodeIgniter</span></span></a> (there is no such thing as &#8220;the best framework&#8221;) or no PHP development at all may better suit you. No one has ever been happy forcing themselves in a position doing something they don&#8217;t like to do!</p>
<h3>Dummies</h3>
<p>Belonging to this group is <strong>no disadvantage</strong><span>. <span>Ok</span>, you don&#8217;t have the experience of someone who has been using PHP since before the dot-com bubble burst, but at least you acknowledge this. Starting from scratch (and knowing it) can eliminate a lot of barriers.</span><br />
Start by learning PHP and fairly early start with a decent <a href="http://www.amazon.com/gp/product/1430210117?ie=UTF8&amp;tag=str0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=1430210117" target="_blank">PHP OO book</a><span> and, again, take your time. In my opinion you don&#8217;t have to finish 5 courses and 3 books to start with <span>Zend</span> Framework. When learning <span>Zend</span> Framework (e.g. from the <a href="http://framework.zend.com/manual/" target="_blank">manual</a>) you&#8217;ll also learn OO principles and best practices, but you need a basic knowledge first.</span><br />
Also don&#8217;t expect that you can add new Zend Framework components on day 2, it will take time.</p>
<p><span>Did I forget about someone? I certainly hope this post can help as a starting point for new <span>Zend</span> Framework developers (or people thinking about becoming one).</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.strictlyphp.com/blog/2009/12/29/beginning-zend-framework/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gettext translation with Google Translate</title>
		<link>http://www.strictlyphp.com/blog/2009/11/27/gettext-translation-with-google-translate/</link>
		<comments>http://www.strictlyphp.com/blog/2009/11/27/gettext-translation-with-google-translate/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 11:34:43 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[i18n]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.strictlyphp.com/blog/?p=1173</guid>
		<description><![CDATA[Working with gettext as your translation engine your project? In need of a rough translation of your application for a mockup/preview/&#8230;?
Paul Dixon offeres a free service that automatically translates a gettext PO file with Google Translate. I personally use gettext a lot because of its speed and ease of use (with poEdit) and this will [...]]]></description>
			<content:encoded><![CDATA[<p><em>Working with gettext as your translation engine your project? In need of a rough translation of your application for a mockup/preview/&#8230;?</em></p>
<p>Paul Dixon offeres a free service that <a href="http://pepipopum.dixo.net/" target="_blank">automatically translates a gettext PO file</a> with Google Translate. I personally use gettext a lot because of its speed and ease of use (with <a href="http://www.poedit.net/" target="_blank">poEdit</a>) and this will certainly be of use.</p>
<p>Of course the results should not be used in a production application.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strictlyphp.com/blog/2009/11/27/gettext-translation-with-google-translate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Propel version 1.4.0 released</title>
		<link>http://www.strictlyphp.com/blog/2009/11/16/propel-version-1-4-0-released/</link>
		<comments>http://www.strictlyphp.com/blog/2009/11/16/propel-version-1-4-0-released/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 21:17:20 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[orm]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[propel]]></category>

		<guid isPermaLink="false">http://www.strictlyphp.com/blog/?p=1159</guid>
		<description><![CDATA[
Although I must admit I didn&#8217;t notice it, less than 2 months after it was decided to create a new version for Propel, it was actually released.
Last week, on the 8th of November, the new 1.4.0 version has been released for production use. Additionally they also set up a blog to prove Propel is still [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.strictlyphp.com/blog/wp-content/uploads/2009/11/propel.gif"><img class="alignleft size-full wp-image-1160" style="border: 0;" title="propel" src="http://www.strictlyphp.com/blog/wp-content/uploads/2009/11/propel.gif" alt="propel" width="200" height="73" /></a></p>
<p><em>Although I must admit I didn&#8217;t notice it, less than 2 months after it was decided to create a new version for <a href="http://propel.phpdb.org/" target="_blank">Propel</a>, it was actually released.</em></p>
<p>Last week, on the 8th of November, the <a href="http://propel.phpdb.org/trac/wiki/Users/News/Propel14StableReleasedAndNewBlog" target="_blank">new 1.4.0 version</a> has been released for production use. Additionally they also set up a <a href="http://propel.posterous.com/" target="_blank">blog</a> to prove Propel is still very much alive.</p>
<blockquote><p>Propel 1.4 is a backwards compatible evolution of Propel 1.3. It offers <strong>lots of bug fixes</strong>, some very interesting new features, <strong>speed enhancements</strong>, and <strong>a very simple upgrade path</strong>: rebuild your model after updating Propel, and your application works as always. Except it works better&#8230;</p></blockquote>
<p>It all sounds to good to be true!</p>
<p>A first migration of a project to this new version went smoothly: remember to remove the *-classmap.php file that was generated by 1.3.0 because it has been integrated in the main config file. It&#8217;s also recommendable to delete the /map sub-folder in your models folder because 1.4.0 generates newly named *TableMap.php files.</p>
<p>Also good to have: full query logging (Propel 1.3 switched to PDO and lost this feature but it&#8217;s back!).</p>
<p>I must also admit I have never actually implemented <a href="http://www.doctrine-project.org/" target="_blank">Doctrine</a>, but that&#8217;s also because I haven&#8217;t found a reason while using Propel.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strictlyphp.com/blog/2009/11/16/propel-version-1-4-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
