<?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>SC Knowledge Base &#187; php</title>
	<atom:link href="http://sandhillcreative.com/kb/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://sandhillcreative.com/kb</link>
	<description></description>
	<lastBuildDate>Fri, 09 Sep 2011 20:37:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Generating XML and passing it to jQuery</title>
		<link>http://sandhillcreative.com/kb/2010/01/06/generating-xml-and-passing-it-to-jquery/</link>
		<comments>http://sandhillcreative.com/kb/2010/01/06/generating-xml-and-passing-it-to-jquery/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 23:08:51 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://sandhillcreative.com/kb/?p=168</guid>
		<description><![CDATA[I am generating some XML and then POSTing it to a jQuery based plugin. Looking at the POSTed XML in Firebug, everything appears normal. However, something is not getting passed to the plugin so it is using a amount (which results in no data being properly displayed). The solution turned out to be quite simple&#8230; [...]]]></description>
		<wfw:commentRss>http://sandhillcreative.com/kb/2010/01/06/generating-xml-and-passing-it-to-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interesting Article about Caching Models in Zend Framework</title>
		<link>http://sandhillcreative.com/kb/2009/05/12/interesting-article-about-caching-models-in-zend-framework/</link>
		<comments>http://sandhillcreative.com/kb/2009/05/12/interesting-article-about-caching-models-in-zend-framework/#comments</comments>
		<pubDate>Tue, 12 May 2009 06:03:56 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[models]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://sandhillcreative.com/kb/?p=138</guid>
		<description><![CDATA[Interesting article over at http://www.contentwithstyle.co.uk/content/a-caching-pattern-for-models about implementing caching with Zend Framework models. In the comments there is a good point about how to refresh such a cache with the author suggesting using something like a $this->cache->clear() to clear the cache upon adding or updating content. &#160;&#160;&#160;&#160;&#160;]]></description>
		<wfw:commentRss>http://sandhillcreative.com/kb/2009/05/12/interesting-article-about-caching-models-in-zend-framework/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Zend_Tool Set-up</title>
		<link>http://sandhillcreative.com/kb/2009/05/07/zend_tool-set-up-and-use/</link>
		<comments>http://sandhillcreative.com/kb/2009/05/07/zend_tool-set-up-and-use/#comments</comments>
		<pubDate>Thu, 07 May 2009 06:23:40 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[unix]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[zend_tool]]></category>

		<guid isPermaLink="false">http://sandhillcreative.com/kb/?p=125</guid>
		<description><![CDATA[Download Zend Framework (1.8.0 is the current version at present&#8230; change as needed): wget http://framework.zend.com/releases/ZendFramework-1.8.0/ZendFramework-1.8.0-minimal.tar.gz Unpack the downloaded file: tar zxvf ~/Downloads/ZendFramework-1.8.0-minimal.tar.gz Move into that unpacked directory: cd ~/Downloads/ZendFramework-1.8.0-minimal Find out where your PHP binary is: which php Put zf.sh and zf.php into the same dir as the PHP binary: cp bin/zf.sh bin/zf.php /Applications/MAMP/bin/php5/bin/ Find [...]]]></description>
		<wfw:commentRss>http://sandhillcreative.com/kb/2009/05/07/zend_tool-set-up-and-use/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extending Zend_View to Implement a Concrete Function&#8230;</title>
		<link>http://sandhillcreative.com/kb/2009/04/29/extending-zend-view-to-implement-a-concrete-function/</link>
		<comments>http://sandhillcreative.com/kb/2009/04/29/extending-zend-view-to-implement-a-concrete-function/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 22:00:14 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://sandhillcreative.com/kb/?p=14</guid>
		<description><![CDATA[&#8230;without using a view helper*. In a nutshell: Extend Zend_View Put your method in this extended class Instantiate the class (in your bootstrap for instance) Assign it to the ViewRenderer Pass that viewrenderer to Zend_Controller_Action_HelperBroker&#8217;s addHelper method Use it in your view The details: In /library/My/Zend/ create View.php: class My_Zend_View extends Zend_View { public function [...]]]></description>
		<wfw:commentRss>http://sandhillcreative.com/kb/2009/04/29/extending-zend-view-to-implement-a-concrete-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

