<?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>Lost-In-Code &#187; CakePHP</title>
	<atom:link href="http://www.lost-in-code.com/category/platforms/cakephp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lost-in-code.com</link>
	<description>Web Development Resources</description>
	<lastBuildDate>Fri, 03 Feb 2012 11:07:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>CakePHP : Change view file from controller</title>
		<link>http://www.lost-in-code.com/programming/php-code/cakephp-change-view-file-from-controller/</link>
		<comments>http://www.lost-in-code.com/programming/php-code/cakephp-change-view-file-from-controller/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 19:04:57 +0000</pubDate>
		<dc:creator>Antonie Potgieter</dc:creator>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[controller]]></category>
		<category><![CDATA[render]]></category>
		<category><![CDATA[view]]></category>
		<category><![CDATA[view file]]></category>

		<guid isPermaLink="false">http://www.lost-in-code.com/?p=66</guid>
		<description><![CDATA[With CakePHP, the controller core automatically detects the file name of the view file which needs to be rendered from a controller action. You might want to reuse an existent view for an action or specify a different file name. For example, if you have a controller named &#8220;Users&#8221; and you execute a controller action [...]]]></description>
		<wfw:commentRss>http://www.lost-in-code.com/programming/php-code/cakephp-change-view-file-from-controller/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>CakePHP : Form Radio Default Checked Value</title>
		<link>http://www.lost-in-code.com/programming/php-code/cakephp-form-radio-default-checked-value/</link>
		<comments>http://www.lost-in-code.com/programming/php-code/cakephp-form-radio-default-checked-value/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 12:31:17 +0000</pubDate>
		<dc:creator>Antonie Potgieter</dc:creator>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[formhelper]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[radio]]></category>
		<category><![CDATA[radio buttons]]></category>

		<guid isPermaLink="false">http://www.lost-in-code.com/?p=30</guid>
		<description><![CDATA[With the CakePHP FormHelper, you can output a set or a list of radio button widgets. Usage &#60;?= $form -&#62; radio&#40;$field, $options, $attributes&#41;; ?&#62; Example &#60;?= $form -&#62; radio&#40;&#8216;Model.field&#8217;, array&#40;&#8216;Option1&#8242;, &#8216;Option2&#8242;, &#8216;Option3&#8242;&#41;, array&#40;&#8216;default&#8217; =&#62; &#8216;option2&#8242;&#41;&#41;; ?&#62; In the line of code above, you&#8217;ll notice the default attribute value. This specifies the value of the radio [...]]]></description>
		<wfw:commentRss>http://www.lost-in-code.com/programming/php-code/cakephp-form-radio-default-checked-value/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>CakePHP Crontab</title>
		<link>http://www.lost-in-code.com/programming/php-code/cakephp-crontab/</link>
		<comments>http://www.lost-in-code.com/programming/php-code/cakephp-crontab/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 22:53:48 +0000</pubDate>
		<dc:creator>Antonie Potgieter</dc:creator>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[CakePHP Cron Schedule]]></category>
		<category><![CDATA[cakephp cronjob]]></category>
		<category><![CDATA[cakephp schedules]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[cronjobs with cakephp]]></category>
		<category><![CDATA[crontab]]></category>
		<category><![CDATA[crontab cakephp]]></category>
		<category><![CDATA[dispatcher]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[schedule]]></category>

		<guid isPermaLink="false">http://www.lost-in-code.com/2008/02/28/cakephp-crontab/</guid>
		<description><![CDATA[Due to the way that CakePHP rewrites URL requests with its router, it might seem confusing to execute a Crontab to run a controller action. I will show you how to set up a cron dispatcher so that you can execute all your different controller action schedules on a single file and pass the controller [...]]]></description>
		<wfw:commentRss>http://www.lost-in-code.com/programming/php-code/cakephp-crontab/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>CakePHP : Delete multiple records</title>
		<link>http://www.lost-in-code.com/programming/php-code/cakephp-delete-multiple-records/</link>
		<comments>http://www.lost-in-code.com/programming/php-code/cakephp-delete-multiple-records/#comments</comments>
		<pubDate>Fri, 21 Sep 2007 03:01:19 +0000</pubDate>
		<dc:creator>Antonie Potgieter</dc:creator>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[deleteall]]></category>
		<category><![CDATA[multiple]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[records]]></category>

		<guid isPermaLink="false">http://www.lost-in-code.com/2007/09/20/cakephp-delete-multiple-records/</guid>
		<description><![CDATA[With CakePHP, you can remove multiple records from a database table using the deleteAll() model method. deleteAll() Usage $this -&#62; Model -&#62; deleteAll&#40;$conditions, $cascade = true&#41;; Lets say that you wanted to remove all the records for a specific user from the Item model. Below is a quick example. deleteAll() Example $this -&#62; Item -&#62; [...]]]></description>
		<wfw:commentRss>http://www.lost-in-code.com/programming/php-code/cakephp-delete-multiple-records/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

