<?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>Visual Works</title>
	<atom:link href="http://www.visualworks.com.br/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.visualworks.com.br</link>
	<description>Web Programming and Development</description>
	<lastBuildDate>Thu, 10 May 2012 16:59:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How to post PHP Object in a form: Serialize, Encode Base64, Decode Base64 and Unserialize.</title>
		<link>http://www.visualworks.com.br/2012/02/how-to-post-php-object-in-a-form-serialize-encode-base64-decode-base64-and-unserialize/</link>
		<comments>http://www.visualworks.com.br/2012/02/how-to-post-php-object-in-a-form-serialize-encode-base64-decode-base64-and-unserialize/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 18:00:56 +0000</pubDate>
		<dc:creator>henriquemattos</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.visualworks.com.br/?p=141</guid>
		<description><![CDATA[<p>I had a though time trying to post an object inside a form so I wouldn&#8217;t need to query database again with the same result just to export the rowset to a xls.</p> <p>What happened is that I had a search form with a big variety of combinations such as City, State, Status, Gender and [...]]]></description>
		<wfw:commentRss>http://www.visualworks.com.br/2012/02/how-to-post-php-object-in-a-form-serialize-encode-base64-decode-base64-and-unserialize/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cascade delete with Zend Framework &#124; Using Reference Map and Dependent Tables</title>
		<link>http://www.visualworks.com.br/2011/09/cascade-delete-with-zend-framework-using-reference-map-and-dependent-tables/</link>
		<comments>http://www.visualworks.com.br/2011/09/cascade-delete-with-zend-framework-using-reference-map-and-dependent-tables/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 19:48:09 +0000</pubDate>
		<dc:creator>henriquemattos</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://www.visualworks.com.br/?p=115</guid>
		<description><![CDATA[<p>I was googling around to find a good way to delete row from a column and automatically cascade to parent table. After reading a lot of bullshit, found the solution with the code above:</p> <p>My Unit Model (Unit.php)</p> <p>&#60;?php</p> <p>class Unit extends Zend_Db_Table_Abstract</p> <p>{</p> <p>protected $_keys = array(&#8216;id&#8217;,'addressId&#8217;);</p> <p>protected $_name = &#8216;unit&#8217;;</p> <p>protected $_sequence = [...]]]></description>
		<wfw:commentRss>http://www.visualworks.com.br/2011/09/cascade-delete-with-zend-framework-using-reference-map-and-dependent-tables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Counter plugin used on Deadline wordpress theme by AWESEM</title>
		<link>http://www.visualworks.com.br/2011/08/social-counter-plugin-used-on-deadline-wordpress-theme-by-awesem/</link>
		<comments>http://www.visualworks.com.br/2011/08/social-counter-plugin-used-on-deadline-wordpress-theme-by-awesem/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 20:03:56 +0000</pubDate>
		<dc:creator>henriquemattos</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.visualworks.com.br/?p=107</guid>
		<description><![CDATA[<p>After a couple of hours trying to figure out what was wrong with the file_get_contents($url) used on the Deadline wordpress theme to get twitter followers, the fix just came into my mind. The string being passed with the Twitter Username ($twitter_username) was not being concatenated to the url (&#8216;http://twitter.com/users/show.xml?screen_name=&#8217;) as string. So, when file_get_contents($url) tried [...]]]></description>
		<wfw:commentRss>http://www.visualworks.com.br/2011/08/social-counter-plugin-used-on-deadline-wordpress-theme-by-awesem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connect to database during bootstrap with Zend Framework</title>
		<link>http://www.visualworks.com.br/2011/07/connect-to-database-during-bootstrap-with-zend-framework/</link>
		<comments>http://www.visualworks.com.br/2011/07/connect-to-database-during-bootstrap-with-zend-framework/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 23:32:18 +0000</pubDate>
		<dc:creator>henriquemattos</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://www.visualworks.com.br/?p=104</guid>
		<description><![CDATA[<p>It&#8217;s quite funny when the most complex problem is solved with the easiest solution. I just found myself crazy about how to connect to database from a Controller Helper so I could get the Roles and the Resources to implement the ACL. Well, it turns out that if you want something to be bootstrapped right [...]]]></description>
		<wfw:commentRss>http://www.visualworks.com.br/2011/07/connect-to-database-during-bootstrap-with-zend-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bootstrap module only if database table exists. (or: how to load specific modules in Zend Framework)</title>
		<link>http://www.visualworks.com.br/2011/07/bootstrap-module-only-if-database-table-exists-or-how-to-load-specific-modules-in-zend-framework/</link>
		<comments>http://www.visualworks.com.br/2011/07/bootstrap-module-only-if-database-table-exists-or-how-to-load-specific-modules-in-zend-framework/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 21:52:33 +0000</pubDate>
		<dc:creator>henriquemattos</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://www.visualworks.com.br/?p=98</guid>
		<description><![CDATA[<p>I&#8217;ve been posting a lot about modules and Zend Framework lately. I&#8217;m really amazed about this product and it&#8217;s helping me to develop a good CMS. I&#8217;m sharing the application and library folder of the CMS with different projects and not every project has every module installed, because of that, I can&#8217;t bootstrap automatically since [...]]]></description>
		<wfw:commentRss>http://www.visualworks.com.br/2011/07/bootstrap-module-only-if-database-table-exists-or-how-to-load-specific-modules-in-zend-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Declarative Referential Integrity with Zend_Db_Table (how to dynamically create table with Foreign Key using Zend_Db_Table_Abstract)</title>
		<link>http://www.visualworks.com.br/2011/07/using-declarative-referential-integrity-with-zend_db_table-how-to-dynamically-create-table-with-foreign-key-using-zend_db_table_abstract/</link>
		<comments>http://www.visualworks.com.br/2011/07/using-declarative-referential-integrity-with-zend_db_table-how-to-dynamically-create-table-with-foreign-key-using-zend_db_table_abstract/#comments</comments>
		<pubDate>Sun, 03 Jul 2011 23:33:20 +0000</pubDate>
		<dc:creator>henriquemattos</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[db]]></category>
		<category><![CDATA[dba]]></category>
		<category><![CDATA[dri]]></category>
		<category><![CDATA[engines]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[innodb]]></category>
		<category><![CDATA[myisam]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[rdbms]]></category>
		<category><![CDATA[Zend]]></category>
		<category><![CDATA[ZF]]></category>

		<guid isPermaLink="false">http://www.visualworks.com.br/?p=95</guid>
		<description><![CDATA[<p>I&#8217;m not really into this database thing. I study about MySQL just for the basics. I&#8217;m even considering to move Doctrine 2 into my whole Zend application. While I don&#8217;t do that, I have to figure out how to implement the functionality I<a title="Dynamically install module table using Zend_Db_Table_Abstract and SQL file" href="http://www.visualworks.com.br/2011/07/dynamically-install-module-table-using-zend_db_table_abstract-and-sql-file/" target="_blank"> described [...]]]></description>
		<wfw:commentRss>http://www.visualworks.com.br/2011/07/using-declarative-referential-integrity-with-zend_db_table-how-to-dynamically-create-table-with-foreign-key-using-zend_db_table_abstract/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamically install module table using Zend_Db_Table_Abstract and SQL file</title>
		<link>http://www.visualworks.com.br/2011/07/dynamically-install-module-table-using-zend_db_table_abstract-and-sql-file/</link>
		<comments>http://www.visualworks.com.br/2011/07/dynamically-install-module-table-using-zend_db_table_abstract-and-sql-file/#comments</comments>
		<pubDate>Sat, 02 Jul 2011 12:28:24 +0000</pubDate>
		<dc:creator>henriquemattos</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://www.visualworks.com.br/?p=92</guid>
		<description><![CDATA[<p>Finally, after finding out <a title="Resource for a module specific configuration in Zend Bootstrap" href="http://www.visualworks.com.br/2011/07/resource-for-a-module-specific-configuration-in-zend-bootstrap/" target="_blank">how to have module based configuration</a>, I could implement what I say is the most useful method for application development: creating database table on demand! Although I lost an entire night for this, it&#8217;s actually really simple. All you need [...]]]></description>
		<wfw:commentRss>http://www.visualworks.com.br/2011/07/dynamically-install-module-table-using-zend_db_table_abstract-and-sql-file/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Resource for a module specific configuration in Zend Bootstrap</title>
		<link>http://www.visualworks.com.br/2011/07/resource-for-a-module-specific-configuration-in-zend-bootstrap/</link>
		<comments>http://www.visualworks.com.br/2011/07/resource-for-a-module-specific-configuration-in-zend-bootstrap/#comments</comments>
		<pubDate>Sat, 02 Jul 2011 07:08:27 +0000</pubDate>
		<dc:creator>henriquemattos</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[ini]]></category>
		<category><![CDATA[modules]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[Zend]]></category>
		<category><![CDATA[ZF]]></category>

		<guid isPermaLink="false">http://www.visualworks.com.br/?p=86</guid>
		<description><![CDATA[<p>Afther thousands of &#8216;Googling&#8217; for how to implement module specific configuration, I got into <a title="Amazium - Zend Framework Module Specific Config" href="http://www.amazium.com/blog/zend-framework-module-specific-config" target="_blank">this post from Jeroen Keppens</a> about how to implement a resource in bootstrap to load configuration files stored in module&#8217;s folder. It&#8217;s really, really good. But I read lots of times and [...]]]></description>
		<wfw:commentRss>http://www.visualworks.com.br/2011/07/resource-for-a-module-specific-configuration-in-zend-bootstrap/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mobile posting from my Nokia N97</title>
		<link>http://www.visualworks.com.br/2011/04/mobile-posting-from-my-nokia-n97/</link>
		<comments>http://www.visualworks.com.br/2011/04/mobile-posting-from-my-nokia-n97/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 05:33:05 +0000</pubDate>
		<dc:creator>henriquemattos</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.visualworks.com.br/?p=80</guid>
		<description><![CDATA[<p>Hi, this is just a try out post to see how this Symbian S60 app works.</p> <p>There should be this text and a photo I took in Buenos Aires last January. Cheers!</p> <p><a href="http://www.visualworks.com.br/wp-content/uploads/2011/04/05022011382.jpg"></a></p>]]></description>
		<wfw:commentRss>http://www.visualworks.com.br/2011/04/mobile-posting-from-my-nokia-n97/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery, a new The Ugly Duckling story</title>
		<link>http://www.visualworks.com.br/2011/03/jquery-a-new-the-ugly-duckling-story/</link>
		<comments>http://www.visualworks.com.br/2011/03/jquery-a-new-the-ugly-duckling-story/#comments</comments>
		<pubDate>Sat, 05 Mar 2011 20:27:50 +0000</pubDate>
		<dc:creator>henriquemattos</dc:creator>
				<category><![CDATA[Front-End]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.visualworks.com.br/?p=69</guid>
		<description><![CDATA[<p>It happened for a long time with PHP: a good and easy script language to program was gaining users all over the world, specially those who wanted to surf the wave but didn&#8217;t want to oar. All what you should do develop a CMS a couple years ago was to go to a forum and [...]]]></description>
		<wfw:commentRss>http://www.visualworks.com.br/2011/03/jquery-a-new-the-ugly-duckling-story/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

