<?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>Misadventures of a Celtic Geek &#187; php</title>
	<atom:link href="http://blog.guesny.net/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.guesny.net</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Sun, 03 Jun 2012 19:25:07 +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>IE session bug</title>
		<link>http://blog.guesny.net/2010/08/11/ie-session-bug-2/</link>
		<comments>http://blog.guesny.net/2010/08/11/ie-session-bug-2/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 07:43:10 +0000</pubDate>
		<dc:creator>welsh_dwarf</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[sessions]]></category>

		<guid isPermaLink="false">http://blog.guesny.net/?p=139</guid>
		<description><![CDATA[I&#8217;m just reposting this here so that it can help someone else. Internet Explorer doesn&#8217;t honor php sessions if the domaine name isn&#8217;t valid (hint: _ isn&#8217;t a valid caracter in domaine names). This can explain some hard to find &#8230; <a href="http://blog.guesny.net/2010/08/11/ie-session-bug-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m just reposting this here so that it can help someone else.<br />
Internet Explorer doesn&#8217;t honor php sessions if the domaine name isn&#8217;t valid (hint: _ isn&#8217;t a valid caracter in domaine names).<br />
This can explain some hard to find bugs where your session works fine on FF, chrome or Safari, but not in Internet Explorer.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.guesny.net/2010/08/11/ie-session-bug-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Php profiling tip 1</title>
		<link>http://blog.guesny.net/2007/06/21/php-profiling-tip-1/</link>
		<comments>http://blog.guesny.net/2007/06/21/php-profiling-tip-1/#comments</comments>
		<pubDate>Thu, 21 Jun 2007 15:20:43 +0000</pubDate>
		<dc:creator>welsh_dwarf</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blog.guesny.net/index.php/2007/06/21/php-profiling-tip-1/</guid>
		<description><![CDATA[Someone at work pointed this out to me today, so here it is for google&#8217;s benefit&#8230; When coding php pages you often have to manipulate strings and print them, with select pieces of data, so that the user can see &#8230; <a href="http://blog.guesny.net/2007/06/21/php-profiling-tip-1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Someone at work pointed this out to me today, so here it is for google&#8217;s benefit&#8230;</p>
<p>When coding php pages you often have to manipulate strings and print them, with select pieces of data, so that the user can see them.</p>
<p>There are 2 different ways to do this:</p>
<blockquote><pre lang="php">$var = 'This is a variable : '.$data;
</pre>
</blockquote>
<p>and</p>
<blockquote><pre lang="php">$var = "This is a variable : $data";</pre>
</blockquote>
<p>In the first case, you just concat the 2 elements together, whereas in the second case, php does the substitutions by it&#8217;s self.</p>
<p>The interesting part is that the first construct is over 4 times faster than the second&#8230;.</p>
<p>More info (in French) <a href="http://pbnaigeon.developpez.com/tutoriel/PHP/apostrophe-guillemet/#LIII">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.guesny.net/2007/06/21/php-profiling-tip-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

