<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Erika HeidiErika Heidi</title>
	<atom:link href="http://erikaheidi.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://erikaheidi.com</link>
	<description>Web Developer - Amsterdam</description>
	<lastBuildDate>Sun, 09 Jun 2013 12:51:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on The Dutch Conference 2013 (DPC) by Rafael Dohms (@rdohms)</title>
		<link>http://erikaheidi.com/2013/06/09/the-dutch-conference-2013-dpc/#comment-117</link>
		<dc:creator>Rafael Dohms (@rdohms)</dc:creator>
		<pubDate>Sun, 09 Jun 2013 12:51:27 +0000</pubDate>
		<guid isPermaLink="false">http://erikaheidi.com/?p=2377#comment-117</guid>
		<description><![CDATA[Your feeling and experiences can be summed up by: &quot;Welcome to the PHP Community&quot;. A long time ago it took me in and became my tech-family, my friends in distant places, since then its my pleasure to find new people and introduce them to this amazing group. 

Congratulation on all of the achievements, its great to see you seize the opportunities and become a active member of the community!
Go AmsterdamPHP!]]></description>
		<content:encoded><![CDATA[<p>Your feeling and experiences can be summed up by: &#8220;Welcome to the PHP Community&#8221;. A long time ago it took me in and became my tech-family, my friends in distant places, since then its my pleasure to find new people and introduce them to this amazing group. </p>
<p>Congratulation on all of the achievements, its great to see you seize the opportunities and become a active member of the community!<br />
Go AmsterdamPHP!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Dutch Conference 2013 (DPC) by Cees-Jan Kiewiet (@WyriHaximus)</title>
		<link>http://erikaheidi.com/2013/06/09/the-dutch-conference-2013-dpc/#comment-113</link>
		<dc:creator>Cees-Jan Kiewiet (@WyriHaximus)</dc:creator>
		<pubDate>Sun, 09 Jun 2013 11:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://erikaheidi.com/?p=2377#comment-113</guid>
		<description><![CDATA[Great recap, sounds like DPC13 was a whole lot of fun. If you want to get rid of that vile WordPress stench take a look at Octopress: http://octopress.org/]]></description>
		<content:encoded><![CDATA[<p>Great recap, sounds like DPC13 was a whole lot of fun. If you want to get rid of that vile WordPress stench take a look at Octopress: <a href="http://octopress.org/" rel="nofollow">http://octopress.org/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with Silex &#8211; the php micro framework based on Symfony 2 by Felipe</title>
		<link>http://erikaheidi.com/2012/11/21/getting-started-with-silex-the-php-micro-framework-based-on-symfony-2/#comment-101</link>
		<dc:creator>Felipe</dc:creator>
		<pubDate>Thu, 04 Apr 2013 12:28:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.erikaheidi.com/?p=1680#comment-101</guid>
		<description><![CDATA[Erika, once again congratulations for the post.
you can tell me how use CSS style on the form?]]></description>
		<content:encoded><![CDATA[<p>Erika, once again congratulations for the post.<br />
you can tell me how use CSS style on the form?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with Silex &#8211; the php micro framework based on Symfony 2 by Felipe</title>
		<link>http://erikaheidi.com/2012/11/21/getting-started-with-silex-the-php-micro-framework-based-on-symfony-2/#comment-98</link>
		<dc:creator>Felipe</dc:creator>
		<pubDate>Tue, 02 Apr 2013 11:19:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.erikaheidi.com/?p=1680#comment-98</guid>
		<description><![CDATA[cool, thanks!
worked perfect! very good
congratulations on site]]></description>
		<content:encoded><![CDATA[<p>cool, thanks!<br />
worked perfect! very good<br />
congratulations on site</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with Silex &#8211; the php micro framework based on Symfony 2 by erika</title>
		<link>http://erikaheidi.com/2012/11/21/getting-started-with-silex-the-php-micro-framework-based-on-symfony-2/#comment-94</link>
		<dc:creator>erika</dc:creator>
		<pubDate>Tue, 02 Apr 2013 11:03:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.erikaheidi.com/?p=1680#comment-94</guid>
		<description><![CDATA[Hi Felipe!

You need to use the Request object to get your data, just like this - assuming you have a html form with the fields &quot;nome&quot; and &quot;email&quot; pointing to &quot;/grava&quot;
&lt;pre&gt;
$app-&gt;post(&#039;/grava&#039;, function(Request $request) use($app) {
      $nome = $request-&gt;get(&#039;nome&#039;);
      $email = $request-&gt;get(&#039;email&#039;);
      /* do what you want here, save the data for instance */
});
&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>Hi Felipe!</p>
<p>You need to use the Request object to get your data, just like this &#8211; assuming you have a html form with the fields &#8220;nome&#8221; and &#8220;email&#8221; pointing to &#8220;/grava&#8221;</p>
<pre>
$app->post('/grava', function(Request $request) use($app) {
      $nome = $request->get('nome');
      $email = $request->get('email');
      /* do what you want here, save the data for instance */
});
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with Silex &#8211; the php micro framework based on Symfony 2 by Felipe</title>
		<link>http://erikaheidi.com/2012/11/21/getting-started-with-silex-the-php-micro-framework-based-on-symfony-2/#comment-90</link>
		<dc:creator>Felipe</dc:creator>
		<pubDate>Mon, 01 Apr 2013 12:42:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.erikaheidi.com/?p=1680#comment-90</guid>
		<description><![CDATA[/* include the silex autoload */
require_once __DIR__.&#039;/vendor/autoload.php&#039;;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
$app = new Silex\Application();
$app[&#039;debug&#039;] = true;

$app-&gt;get(&#039;/&#039;, function () use ($app) {

	return &quot;
	
		
		
			
				Nome:
				
			
			
			
			  
			
		
		
	
&quot;;

});

$app-&gt;post(&#039;/grava&#039;, function (Request $request) {
    .. ???
});

$app-&gt;run();]]></description>
		<content:encoded><![CDATA[<p>/* include the silex autoload */<br />
require_once __DIR__.&#8217;/vendor/autoload.php&#8217;;<br />
use Symfony\Component\HttpFoundation\Request;<br />
use Symfony\Component\HttpFoundation\Response;<br />
$app = new Silex\Application();<br />
$app['debug'] = true;</p>
<p>$app-&gt;get(&#8216;/&#8217;, function () use ($app) {</p>
<p>	return &#8221;</p>
<p>				Nome:</p>
<p>&#8220;;</p>
<p>});</p>
<p>$app-&gt;post(&#8216;/grava&#8217;, function (Request $request) {<br />
    .. ???<br />
});</p>
<p>$app-&gt;run();</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with Silex &#8211; the php micro framework based on Symfony 2 by Felipe</title>
		<link>http://erikaheidi.com/2012/11/21/getting-started-with-silex-the-php-micro-framework-based-on-symfony-2/#comment-86</link>
		<dc:creator>Felipe</dc:creator>
		<pubDate>Mon, 01 Apr 2013 12:40:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.erikaheidi.com/?p=1680#comment-86</guid>
		<description><![CDATA[Hello Erika,
How do I send and receive values​​?

/* include the silex autoload */
require_once __DIR__.&#039;/vendor/autoload.php&#039;;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
$app = new Silex\Application();
$app[&#039;debug&#039;] = true;

$app-&gt;get(&#039;/&#039;, function () use ($app) {

	return &quot;
	
		
		
			
				Nome:
				
			
			
			
			  
			
		
		
	
&quot;;

});

$app-&gt;post(&#039;/grava&#039;, function (Request $request) {
    .. ???
});

$app-&gt;run();

I would like to receive and record the values ​​in a data bank.
Can you help me?]]></description>
		<content:encoded><![CDATA[<p>Hello Erika,<br />
How do I send and receive values​​?</p>
<p>/* include the silex autoload */<br />
require_once __DIR__.&#8217;/vendor/autoload.php&#8217;;<br />
use Symfony\Component\HttpFoundation\Request;<br />
use Symfony\Component\HttpFoundation\Response;<br />
$app = new Silex\Application();<br />
$app['debug'] = true;</p>
<p>$app-&gt;get(&#8216;/&#8217;, function () use ($app) {</p>
<p>	return &#8221;</p>
<p>				Nome:</p>
<p>&#8220;;</p>
<p>});</p>
<p>$app-&gt;post(&#8216;/grava&#8217;, function (Request $request) {<br />
    .. ???<br />
});</p>
<p>$app-&gt;run();</p>
<p>I would like to receive and record the values ​​in a data bank.<br />
Can you help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on silex-bootstrap &#8211; a Silex bundle with Twitter Bootstrap, ready for Pagoda Box by Silex and Localization (i18n/L10n): TranslationServiceProvider &#124; Erika Heidi</title>
		<link>http://erikaheidi.com/open-source/silex-bootstrap-a-silex-bundle-with-twitter-bootstrap-ready-for-pagoda-box/#comment-78</link>
		<dc:creator>Silex and Localization (i18n/L10n): TranslationServiceProvider &#124; Erika Heidi</dc:creator>
		<pubDate>Tue, 19 Mar 2013 22:06:21 +0000</pubDate>
		<guid isPermaLink="false">http://erikaheidi.com/?page_id=2090#comment-78</guid>
		<description><![CDATA[[...] silex-bootstrap &#8211; a Silex bundle with Twitter Bootstrap, ready for Pagoda Box [...]]]></description>
		<content:encoded><![CDATA[<p>[...] silex-bootstrap &#8211; a Silex bundle with Twitter Bootstrap, ready for Pagoda Box [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with Silex &#8211; the php micro framework based on Symfony 2 by Silex and Localization (i18n/L10n): TranslationServiceProvider &#124; Erika Heidi</title>
		<link>http://erikaheidi.com/2012/11/21/getting-started-with-silex-the-php-micro-framework-based-on-symfony-2/#comment-74</link>
		<dc:creator>Silex and Localization (i18n/L10n): TranslationServiceProvider &#124; Erika Heidi</dc:creator>
		<pubDate>Tue, 19 Mar 2013 21:51:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.erikaheidi.com/?p=1680#comment-74</guid>
		<description><![CDATA[[...] those of you who didn&#8217;t have the opportunity to try Silex before, I have a post here covering the basics, and a Pagodabox quickstart with a Silex barebone using Twitter Bootstrap for [...]]]></description>
		<content:encoded><![CDATA[<p>[...] those of you who didn&#8217;t have the opportunity to try Silex before, I have a post here covering the basics, and a Pagodabox quickstart with a Silex barebone using Twitter Bootstrap for [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The PHPness riot and the sexism overreaction by Gábor Hojtsy</title>
		<link>http://erikaheidi.com/2013/02/24/the-phpness-riot-and-the-sexism-overreaction/#comment-66</link>
		<dc:creator>Gábor Hojtsy</dc:creator>
		<pubDate>Wed, 27 Feb 2013 07:28:24 +0000</pubDate>
		<guid isPermaLink="false">http://erikaheidi.com/?p=2130#comment-66</guid>
		<description><![CDATA[In other words, the innocent understanding of the shirt assumes the only exposure ever people had to mentioning enhancing their penis was in spam email. Reality is people have good spam filters now (I&#039;ve not seen such an email in years), and there are other prior experiences that might be stronger and would be immediately recalled. When people put an offer about men&#039;s genitals on their shirt, the cat is pretty much out of the bag. That people should have understood the text only up to one well defined point and definitely not further is making a lot of assumptions about prior experience.]]></description>
		<content:encoded><![CDATA[<p>In other words, the innocent understanding of the shirt assumes the only exposure ever people had to mentioning enhancing their penis was in spam email. Reality is people have good spam filters now (I&#8217;ve not seen such an email in years), and there are other prior experiences that might be stronger and would be immediately recalled. When people put an offer about men&#8217;s genitals on their shirt, the cat is pretty much out of the bag. That people should have understood the text only up to one well defined point and definitely not further is making a lot of assumptions about prior experience.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
