<?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"
	>
<channel>
	<title>Comments for Rene's PHP Blog</title>
	<atom:link href="http://www.phpz.nl/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.phpz.nl</link>
	<description>My PHP experiences</description>
	<pubDate>Sun, 05 Sep 2010 19:52:08 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>Comment on MySQL issue with character set by Roberto</title>
		<link>http://www.phpz.nl/?p=46#comment-24</link>
		<dc:creator>Roberto</dc:creator>
		<pubDate>Thu, 23 Jul 2009 16:24:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpz.nl/?p=46#comment-24</guid>
		<description>Hi Reneee!!!
Thanks for your nice advice!!! I had that problem and now thanks to you I resolved!!! THANKS THANKS THANKS!!!!</description>
		<content:encoded><![CDATA[<p>Hi Reneee!!!<br />
Thanks for your nice advice!!! I had that problem and now thanks to you I resolved!!! THANKS THANKS THANKS!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL issue with character set by Rene</title>
		<link>http://www.phpz.nl/?p=46#comment-15</link>
		<dc:creator>Rene</dc:creator>
		<pubDate>Wed, 28 Jan 2009 14:39:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpz.nl/?p=46#comment-15</guid>
		<description>Hey,

yeah you can insert everything you want. The string can be as long as you want.

Good luck!</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>yeah you can insert everything you want. The string can be as long as you want.</p>
<p>Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL issue with character set by Frank Los</title>
		<link>http://www.phpz.nl/?p=46#comment-14</link>
		<dc:creator>Frank Los</dc:creator>
		<pubDate>Wed, 28 Jan 2009 09:17:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpz.nl/?p=46#comment-14</guid>
		<description>Hi Renee,

could I instert more characters in that string?
Like the strange ř from Dvořák.
I am a php dummie, so...

best, Frank.</description>
		<content:encoded><![CDATA[<p>Hi Renee,</p>
<p>could I instert more characters in that string?<br />
Like the strange ř from Dvořák.<br />
I am a php dummie, so&#8230;</p>
<p>best, Frank.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Read and Download a XML File by Rene</title>
		<link>http://www.phpz.nl/?p=50#comment-7</link>
		<dc:creator>Rene</dc:creator>
		<pubDate>Wed, 29 Oct 2008 20:15:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpz.nl/?p=50#comment-7</guid>
		<description>even i had read your comment i decided to do it after all. And, i saved about half time. So it was an increase for my script. You are talking about reading the xml 15 times, and i think it went from 2 seconds to 1 second.

A XML-playlist of a player (www.1080dots) is the output after the xml has been downloaded. And this playlist is downloaded by the player once every 10 minutes. Everytime the playlist is read, the xml files will be updated. So not that often.
Another web-application is reading the same files localy, but isn't downloading it from external locations.</description>
		<content:encoded><![CDATA[<p>even i had read your comment i decided to do it after all. And, i saved about half time. So it was an increase for my script. You are talking about reading the xml 15 times, and i think it went from 2 seconds to 1 second.</p>
<p>A XML-playlist of a player (www.1080dots) is the output after the xml has been downloaded. And this playlist is downloaded by the player once every 10 minutes. Everytime the playlist is read, the xml files will be updated. So not that often.<br />
Another web-application is reading the same files localy, but isn&#8217;t downloading it from external locations.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Read and Download a XML File by evert</title>
		<link>http://www.phpz.nl/?p=50#comment-5</link>
		<dc:creator>evert</dc:creator>
		<pubDate>Tue, 28 Oct 2008 20:30:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpz.nl/?p=50#comment-5</guid>
		<description>This probably won't help you make things faster. The difference is that you're saving it in a file first, and then opening it straight away. So in fact, this is likely a bit slower..

What you should do though is download the file, save it and keep it around for say, 30 minutes. Only when the file is older than 30mins (using filemtime) you download it again. This means that the slowdown only happens for one visitor every 30 minutes.

Alternatively you can avoid saving it on the disk altogether and for example place it in the memory using apc_store / apc_fetch</description>
		<content:encoded><![CDATA[<p>This probably won&#8217;t help you make things faster. The difference is that you&#8217;re saving it in a file first, and then opening it straight away. So in fact, this is likely a bit slower..</p>
<p>What you should do though is download the file, save it and keep it around for say, 30 minutes. Only when the file is older than 30mins (using filemtime) you download it again. This means that the slowdown only happens for one visitor every 30 minutes.</p>
<p>Alternatively you can avoid saving it on the disk altogether and for example place it in the memory using apc_store / apc_fetch</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Function Exists by Rene</title>
		<link>http://www.phpz.nl/?p=42#comment-4</link>
		<dc:creator>Rene</dc:creator>
		<pubDate>Wed, 22 Oct 2008 16:56:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpz.nl/?p=42#comment-4</guid>
		<description>the problem i encountered was:

-the main application had a functions file with multiple functions
-a sub application (A) had a functions file with multiple functions.
-another sub application (B) had a functions file with multiple functions.

Both sub applications had some same, and some different functions, but they needed to be separated. Some clients will use sub function A and not B, and otherwise.

include once wont help because i need the other functions that are both files. So, i had to bring up a new solution. And this is what i have found.</description>
		<content:encoded><![CDATA[<p>the problem i encountered was:</p>
<p>-the main application had a functions file with multiple functions<br />
-a sub application (A) had a functions file with multiple functions.<br />
-another sub application (B) had a functions file with multiple functions.</p>
<p>Both sub applications had some same, and some different functions, but they needed to be separated. Some clients will use sub function A and not B, and otherwise.</p>
<p>include once wont help because i need the other functions that are both files. So, i had to bring up a new solution. And this is what i have found.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Function Exists by evert</title>
		<link>http://www.phpz.nl/?p=42#comment-3</link>
		<dc:creator>evert</dc:creator>
		<pubDate>Wed, 22 Oct 2008 15:51:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpz.nl/?p=42#comment-3</guid>
		<description>How about including your modules with require_once ? 

putting a function into a conditional (if) has the potential to make things slow..</description>
		<content:encoded><![CDATA[<p>How about including your modules with require_once ? </p>
<p>putting a function into a conditional (if) has the potential to make things slow..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Work with function ezSQL by admin</title>
		<link>http://www.phpz.nl/?p=23#comment-2</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 29 Sep 2008 06:56:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpz.nl/?p=23#comment-2</guid>
		<description>I have posted 3 options for ezSQL. But forgot to mention the $db-&gt;query

With this option you can insert, update or delete. Or whatever function you want to use.</description>
		<content:encoded><![CDATA[<p>I have posted 3 options for ezSQL. But forgot to mention the $db->query</p>
<p>With this option you can insert, update or delete. Or whatever function you want to use.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
