<?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>EyedMax's Pit &#187; Development</title>
	<atom:link href="http://eyedmax.com/tag/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://eyedmax.com</link>
	<description>Yeah, you're right. It's me ;)</description>
	<lastBuildDate>Sat, 05 Sep 2009 00:44:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
  <link>http://eyedmax.com</link>
  <url>http://eyedmax.com/favicon.ico</url>
  <title>EyedMax's Pit</title>
</image>
		<item>
		<title>Advanced Scriplaculous Sortable Demo Fix</title>
		<link>http://eyedmax.com/2009/04/20/advanced-scriplaculous-sortable-demo/</link>
		<comments>http://eyedmax.com/2009/04/20/advanced-scriplaculous-sortable-demo/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 00:22:01 +0000</pubDate>
		<dc:creator>eyedmax</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[JS/Ajax]]></category>

		<guid isPermaLink="false">http://eyedmax.com/?p=198</guid>
		<description><![CDATA[Heh.
There is a good example of using nested Scriplaculous Sortables. With one little flaw &#8211; Scriplaculous ver 1.6.x is used, and when you try to execute the code with newer version of library &#8211; sections.each is not a function error pops up.  
Here is the way to fix it &#8211; you&#8217;ll probably need it [...]]]></description>
			<content:encoded><![CDATA[<p>Heh.</p>
<p>There is a <a href="http://www.gregphoto.net/index.php/2006/05/30/updated-scriplaculous-sortable-demo/" target="_blank">good example</a> of using nested Scriplaculous Sortables. With one little flaw &#8211; Scriplaculous ver 1.6.x is used, and when you try to execute the code with newer version of library &#8211; <span style="color: #ff0000;">sections.each is not a function</span> error pops up.  </p>
<p>Here is the way to fix it &#8211; you&#8217;ll probably need it if you want to save the results <img src='http://eyedmax.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' />   </p>
<p>Just replace &#8220;document.getElementsByClassName(&#8217;section&#8217;);&#8221; to &#8220;$$(&#8216;.section&#8217;);&#8221;  </p>
<p><strong>Before</strong></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> getGroupOrder<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">var</span> sections <span style="color: #339933;">=</span> document<span style="color: #339933;">.</span>getElementsByClassName<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'section'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000000; font-weight: bold;">var</span> alerttext <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
	sections<span style="color: #339933;">.</span><span style="color: #990000;">each</span><span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>section<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000000; font-weight: bold;">var</span> sectionID <span style="color: #339933;">=</span> section<span style="color: #339933;">.</span>id<span style="color: #339933;">;</span>
		<span style="color: #000000; font-weight: bold;">var</span> order <span style="color: #339933;">=</span> Sortable<span style="color: #339933;">.</span><span style="color: #990000;">serialize</span><span style="color: #009900;">&#40;</span>sectionID<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		alerttext <span style="color: #339933;">+=</span> sectionID <span style="color: #339933;">+</span> <span style="color: #0000ff;">': '</span> <span style="color: #339933;">+</span> Sortable<span style="color: #339933;">.</span>sequence<span style="color: #009900;">&#40;</span>section<span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #0000ff;">'\n'</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	alert<span style="color: #009900;">&#40;</span>alerttext<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p><strong>After</strong></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> getGroupOrder<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">var</span> sections <span style="color: #339933;">=</span> $$<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'.section'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000000; font-weight: bold;">var</span> alerttext <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
	sections<span style="color: #339933;">.</span><span style="color: #990000;">each</span><span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>section<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000000; font-weight: bold;">var</span> sectionID <span style="color: #339933;">=</span> section<span style="color: #339933;">.</span>id<span style="color: #339933;">;</span>
		<span style="color: #000000; font-weight: bold;">var</span> order <span style="color: #339933;">=</span> Sortable<span style="color: #339933;">.</span><span style="color: #990000;">serialize</span><span style="color: #009900;">&#40;</span>sectionID<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		alerttext <span style="color: #339933;">+=</span> sectionID <span style="color: #339933;">+</span> <span style="color: #0000ff;">': '</span> <span style="color: #339933;">+</span> Sortable<span style="color: #339933;">.</span>sequence<span style="color: #009900;">&#40;</span>section<span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #0000ff;">'\n'</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	alert<span style="color: #009900;">&#40;</span>alerttext<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Then modify it for your needs and go on )</p>
<p>What was that?<br />
Quote:</p>
<blockquote><p>As of Prototype 1.6, document.getElementsByClassName has been deprecated since native implementations return a NodeList rather than an Array.</p></blockquote>
<img src="http://eyedmax.com/?ak_action=api_record_view&id=198&type=feed" alt="" />
	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://eyedmax.com/2007/03/27/youthumb-another-video-plugin/" title="youthumb &#8211; another video plugin (March 27, 2007)">youthumb &#8211; another video plugin</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/06/23/utf-8-fix-when-charset-is-set-to-latin1/" title="UTF-8 fix &#8211; when charset is set to Latin1 (June 23, 2007)">UTF-8 fix &#8211; when charset is set to Latin1</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/06/26/scrap/" title="Scrap (June 26, 2007)">Scrap</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/05/31/php-4-and-xml/" title="PHP 4 and XML (May 31, 2007)">PHP 4 and XML</a> (0)</li>
	<li><a href="http://eyedmax.com/2008/05/28/fixed-boxover-js-library/" title="Fixed BoxOver js library (May 28, 2008)">Fixed BoxOver js library</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://eyedmax.com/2009/04/20/advanced-scriplaculous-sortable-demo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fixed BoxOver js library</title>
		<link>http://eyedmax.com/2008/05/28/fixed-boxover-js-library/</link>
		<comments>http://eyedmax.com/2008/05/28/fixed-boxover-js-library/#comments</comments>
		<pubDate>Wed, 28 May 2008 00:23:32 +0000</pubDate>
		<dc:creator>eyedmax</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://eyedmax.com/2008/05/28/fixed-boxover-js-library/</guid>
		<description><![CDATA[Hi there, my dear java-damned-script fans!
Today I used to find an strange bug in pretty little fine-looking-hints library, called BoxOver from here. As you know, for the chars &#34;, [ and ] with this library you must use &#38;quot;, [[ and ]] to display&#8230; It works, but only once for brackets.
So, I tried to find [...]]]></description>
			<content:encoded><![CDATA[<p>Hi there, my dear java-damned-script fans!</p>
<p><img style="border-right: 0px; border-top: 0px; margin: 5px 0px 0px 15px; border-left: 0px; border-bottom: 0px" height="170" alt="boxover" src="http://eyedmax.com/wp-content/uploads/2008/05/boxover.jpg" width="259" align="right" border="0" />Today I used to find an strange bug in pretty little fine-looking-hints library, called BoxOver from <a title="Swazz Boxover" href="http://boxover.swazz.org/" target="_blank">here</a>. As you know, for the chars &quot;, [ and ] with this library you must use &amp;quot;, [[ and ]] to display&#8230; It works, but only once for brackets.</p>
<p>So, I tried to find a fix&#8230; None found. At the forum some guy gave an ugly fix with &amp;rbr; and so on&#8230;</p>
<p>Shame on you guys, did you ever heard of regexp syntax? <img src='http://eyedmax.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Here&#8217;s the BoxOver library with fixed [ and ] brackets display:</p>
<p><a title="Nice, light and fast tooltip javascript library download, fixed" href="http://eyedmax.com/download-manager.php?id=9">Download BoxOver 2.1a javascript library (28th May 2008)</a></p>
<p>BTW, when I tried to register on forum to post my fix &#8211; I can&#8217;t &#8211; because of captcha insult, and that&#8217;s why I posted it here.</p>
<img src="http://eyedmax.com/?ak_action=api_record_view&id=137&type=feed" alt="" />
	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://eyedmax.com/2007/03/27/youthumb-another-video-plugin/" title="youthumb &#8211; another video plugin (March 27, 2007)">youthumb &#8211; another video plugin</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/08/21/wanna-buy-a-pligg/" title="Wanna buy a PLIGG? (August 21, 2007)">Wanna buy a PLIGG?</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/06/23/utf-8-fix-when-charset-is-set-to-latin1/" title="UTF-8 fix &#8211; when charset is set to Latin1 (June 23, 2007)">UTF-8 fix &#8211; when charset is set to Latin1</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/08/06/sendmail-for-windows-freeware/" title="Sendmail for Windows Freeware (August 6, 2007)">Sendmail for Windows Freeware</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/06/26/scrap/" title="Scrap (June 26, 2007)">Scrap</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://eyedmax.com/2008/05/28/fixed-boxover-js-library/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Are you a web developer for real?</title>
		<link>http://eyedmax.com/2007/07/20/are-you-a-web-developer-for-real/</link>
		<comments>http://eyedmax.com/2007/07/20/are-you-a-web-developer-for-real/#comments</comments>
		<pubDate>Fri, 20 Jul 2007 19:34:41 +0000</pubDate>
		<dc:creator>eyedmax</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Server]]></category>

		<guid isPermaLink="false">http://eyedmax.com/2007/07/20/are-you-a-web-developer-for-real/</guid>
		<description><![CDATA[Just a simple test.
Check this out.
If all you see &#8211; is your browser&#8217;s &#8220;not found&#8221; page &#8211; well, bad luck! All others &#8211; welcome to the club!

	Related posts
	
	youthumb &#8211; another video plugin (0)
	Fixed BoxOver js library (3)
	Feed ShowZ plugin update (0)
	Feed ShowZ plugin for WordPress 2.x (0)
	Developers versus clients (0)


]]></description>
			<content:encoded><![CDATA[<p>Just a simple test.</p>
<p>Check <a href="http://localhost/" rel="nofollow">this</a> out.</p>
<p>If all you see &#8211; is your browser&#8217;s &#8220;not found&#8221; page &#8211; well, bad luck! All others &#8211; welcome to the club!</p>
<img src="http://eyedmax.com/?ak_action=api_record_view&id=51&type=feed" alt="" />
	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://eyedmax.com/2007/03/27/youthumb-another-video-plugin/" title="youthumb &#8211; another video plugin (March 27, 2007)">youthumb &#8211; another video plugin</a> (0)</li>
	<li><a href="http://eyedmax.com/2008/05/28/fixed-boxover-js-library/" title="Fixed BoxOver js library (May 28, 2008)">Fixed BoxOver js library</a> (3)</li>
	<li><a href="http://eyedmax.com/2007/04/25/feed-showz-plugin-update/" title="Feed ShowZ plugin update (April 25, 2007)">Feed ShowZ plugin update</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/02/15/feed-showz-plugin-for-wordpress-2x/" title="Feed ShowZ plugin for WordPress 2.x (February 15, 2007)">Feed ShowZ plugin for WordPress 2.x</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/06/04/developers-versus-clients/" title="Developers versus clients (June 4, 2007)">Developers versus clients</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://eyedmax.com/2007/07/20/are-you-a-web-developer-for-real/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scrap</title>
		<link>http://eyedmax.com/2007/06/26/scrap/</link>
		<comments>http://eyedmax.com/2007/06/26/scrap/#comments</comments>
		<pubDate>Mon, 25 Jun 2007 23:30:53 +0000</pubDate>
		<dc:creator>eyedmax</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://eyedmax.com/2007/06/26/scrap/</guid>
		<description><![CDATA[Hmmmm&#8230;
The previous piece of code is a scrap if you have to deal with MySql4 server with all-defaults.
So&#8230; I continued my challenge &#8211; I want my data back (and workin&#8217;) 
Stay tuned for next round&#8230;
P.S. For MySql5 all works great&#8230;

	Related posts
	
	youthumb &#8211; another video plugin (0)
	What to do if your blog was hacked by evil [...]]]></description>
			<content:encoded><![CDATA[<p>Hmmmm&#8230;<br />
The previous piece of code is a scrap if you have to deal with MySql4 server with all-defaults.<br />
So&#8230; I continued my challenge &#8211; I want my data back (and workin&#8217;) <img src='http://eyedmax.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
Stay tuned for next round&#8230;</p>
<p>P.S. For MySql5 all works great&#8230;</p>
<img src="http://eyedmax.com/?ak_action=api_record_view&id=39&type=feed" alt="" />
	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://eyedmax.com/2007/03/27/youthumb-another-video-plugin/" title="youthumb &#8211; another video plugin (March 27, 2007)">youthumb &#8211; another video plugin</a> (0)</li>
	<li><a href="http://eyedmax.com/2009/09/05/what-to-do-if-your-blog-was-hacke/" title="What to do if your blog was hacked by evil eval (September 5, 2009)">What to do if your blog was hacked by evil eval</a> (0)</li>
	<li><a href="http://eyedmax.com/2008/05/28/fixed-boxover-js-library/" title="Fixed BoxOver js library (May 28, 2008)">Fixed BoxOver js library</a> (3)</li>
	<li><a href="http://eyedmax.com/2007/04/25/feed-showz-plugin-update/" title="Feed ShowZ plugin update (April 25, 2007)">Feed ShowZ plugin update</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/02/15/feed-showz-plugin-for-wordpress-2x/" title="Feed ShowZ plugin for WordPress 2.x (February 15, 2007)">Feed ShowZ plugin for WordPress 2.x</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://eyedmax.com/2007/06/26/scrap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UTF-8 fix &#8211; when charset is set to Latin1</title>
		<link>http://eyedmax.com/2007/06/23/utf-8-fix-when-charset-is-set-to-latin1/</link>
		<comments>http://eyedmax.com/2007/06/23/utf-8-fix-when-charset-is-set-to-latin1/#comments</comments>
		<pubDate>Sat, 23 Jun 2007 21:28:14 +0000</pubDate>
		<dc:creator>eyedmax</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://eyedmax.com/2007/06/23/utf-8-fix-when-charset-is-set-to-latin1/</guid>
		<description><![CDATA[Situation: you have MySQL 5 database with tables which claimed to have Latin1 charset. You filled the base (with MySQL Front, PhpMyAdmin or any other tool) with info. There IS non alnum chars (like TM, (c), long â€“, ellipsis etc.)
Now you want it back, and your pages are utf-8 encoded, but when you queries the [...]]]></description>
			<content:encoded><![CDATA[<p>Situation: you have MySQL 5 database with tables which claimed to have Latin1 charset. You filled the base (with MySQL Front, PhpMyAdmin or any other tool) with info. There IS non alnum chars (like TM, (c), long â€“, ellipsis etc.)</p>
<p>Now you want it back, and your pages are utf-8 encoded, but when you queries the base, â€??â€™ sign returned instead of your cute symbols. Shit.</p>
<p>Never mind, if you can see those chars with PhpMyAdmin â€“ Iâ€™ll help you to convert them to use them.</p>
<p>First, mysql5 seems to be utf-8 lover (even if other charset is claimed). So â€“ itâ€™s simple. Just exec <strong>SET NAMES utf8</strong> right after database initialisation.</p>
<p>Second, query all the data you need into array.</p>
<p>Third, just do utf8_encode on data with your loved scrap <img src="http://eyedmax.com/wp-content/uploads/2007/06/smile32.gif" /></p>
<p>Forth, exec <strong>SET NAMES latin1</strong></p>
<p>Fifth â€“ write your data back</p>
<p>Sixth â€“ tell your application to use utf8_decode when reading and utf8_encode when writing those data.</p>
<p>Thatâ€™s all â€“ now you can easilly transfer your data to <strike>MySQL4</strike>* or MySQL5 servers â€“ and your app will work there!</p>
<p>Example:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// init skipped </span>
&nbsp;
<span style="color: #666666; font-style: italic;">/*********************************** 
 * Database connect 
 **********************************/</span> 
<span style="color: #000088;">$o_db</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> myDB<span style="color: #009900;">&#40;</span>DB<span style="color: #339933;">::</span><span style="color: #004000;">connect</span><span style="color: #009900;">&#40;</span>DB_DSN<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
<span style="color: #000088;">$o_db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">db_setFetchMode</span><span style="color: #009900;">&#40;</span>DB_FETCHMODE_ASSOC<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
<span style="color: #000088;">$o_db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">db_query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'SET NAMES utf8'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
&nbsp;
<span style="color: #000088;">$q</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'SELECT page_id, page_head_title, page_head_description, page_head_keywords 
  FROM '</span><span style="color: #339933;">.</span>DB_PREFIX<span style="color: #339933;">.</span><span style="color: #0000ff;">'pages 
'</span><span style="color: #339933;">;</span> 
<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$page</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$k</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$p</span><span style="color: #009900;">&#41;</span> 
  <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'page_head_title'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'page_head_description'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'page_head_keywords'</span><span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$field</span><span style="color: #009900;">&#41;</span> 
    <span style="color: #000088;">$page</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$k</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$field</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">utf8_encode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$p</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$field</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
<span style="color: #000088;">$o_db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">db_query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'SET NAMES latin1'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
&nbsp;
<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$page</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$p</span><span style="color: #009900;">&#41;</span> 
<span style="color: #009900;">&#123;</span> 
  <span style="color: #000088;">$up</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'UPDATE '</span><span style="color: #339933;">.</span>DB_PREFIX<span style="color: #339933;">.</span><span style="color: #0000ff;">'pages 
    SET 
    page_head_title = '</span><span style="color: #339933;">.</span><span style="color: #000088;">$o_db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">db_quote</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$p</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'page_head_title'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">', 
    page_head_description = '</span><span style="color: #339933;">.</span><span style="color: #000088;">$o_db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">db_quote</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$p</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'page_head_description'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">', 
    page_head_keywords = '</span><span style="color: #339933;">.</span><span style="color: #000088;">$o_db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">db_quote</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$p</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'page_head_keywords'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">', 
    WHERE page_id = '</span><span style="color: #339933;">.</span><span style="color: #000088;">$o_db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">db_quote</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$p</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'page_id'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">' 
  '</span><span style="color: #339933;">;</span> 
  <span style="color: #000088;">$o_db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">db_query</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$up</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>*see next post</p>
<img src="http://eyedmax.com/?ak_action=api_record_view&id=38&type=feed" alt="" />
	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://eyedmax.com/2007/03/27/youthumb-another-video-plugin/" title="youthumb &#8211; another video plugin (March 27, 2007)">youthumb &#8211; another video plugin</a> (0)</li>
	<li><a href="http://eyedmax.com/2009/09/05/what-to-do-if-your-blog-was-hacke/" title="What to do if your blog was hacked by evil eval (September 5, 2009)">What to do if your blog was hacked by evil eval</a> (0)</li>
	<li><a href="http://eyedmax.com/2008/05/28/fixed-boxover-js-library/" title="Fixed BoxOver js library (May 28, 2008)">Fixed BoxOver js library</a> (3)</li>
	<li><a href="http://eyedmax.com/2007/04/25/feed-showz-plugin-update/" title="Feed ShowZ plugin update (April 25, 2007)">Feed ShowZ plugin update</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/02/15/feed-showz-plugin-for-wordpress-2x/" title="Feed ShowZ plugin for WordPress 2.x (February 15, 2007)">Feed ShowZ plugin for WordPress 2.x</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://eyedmax.com/2007/06/23/utf-8-fix-when-charset-is-set-to-latin1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Developers versus clients</title>
		<link>http://eyedmax.com/2007/06/04/developers-versus-clients/</link>
		<comments>http://eyedmax.com/2007/06/04/developers-versus-clients/#comments</comments>
		<pubDate>Mon, 04 Jun 2007 19:24:52 +0000</pubDate>
		<dc:creator>eyedmax</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://eyedmax.com/2007/06/04/developers-versus-clients/</guid>
		<description><![CDATA[Why always they think that coding &#8211; it&#8217;s an instant process?
Just another little quote:
We were under the understanding that coding would have been complete and we were to have seen your work late last week
Yeah, right. Do you meanÂ next week?

	Related posts
	
	youthumb &#8211; another video plugin (0)
	UTF-8 fix &#8211; when charset is set to Latin1 (0)
	Scrap [...]]]></description>
			<content:encoded><![CDATA[<p>Why always they think that coding &#8211; it&#8217;s an instant process?</p>
<p>Just another little quote:</p>
<blockquote><p>We were under the understanding that coding would have been complete and we were to have seen your work late last week</p></blockquote>
<p>Yeah, right. Do you meanÂ <strong>next</strong> week?</p>
<img src="http://eyedmax.com/?ak_action=api_record_view&id=31&type=feed" alt="" />
	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://eyedmax.com/2007/03/27/youthumb-another-video-plugin/" title="youthumb &#8211; another video plugin (March 27, 2007)">youthumb &#8211; another video plugin</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/06/23/utf-8-fix-when-charset-is-set-to-latin1/" title="UTF-8 fix &#8211; when charset is set to Latin1 (June 23, 2007)">UTF-8 fix &#8211; when charset is set to Latin1</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/06/26/scrap/" title="Scrap (June 26, 2007)">Scrap</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/05/31/php-4-and-xml/" title="PHP 4 and XML (May 31, 2007)">PHP 4 and XML</a> (0)</li>
	<li><a href="http://eyedmax.com/2008/05/28/fixed-boxover-js-library/" title="Fixed BoxOver js library (May 28, 2008)">Fixed BoxOver js library</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://eyedmax.com/2007/06/04/developers-versus-clients/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 4 and XML</title>
		<link>http://eyedmax.com/2007/05/31/php-4-and-xml/</link>
		<comments>http://eyedmax.com/2007/05/31/php-4-and-xml/#comments</comments>
		<pubDate>Thu, 31 May 2007 12:42:06 +0000</pubDate>
		<dc:creator>eyedmax</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://eyedmax.com/2007/05/31/php-4-and-xml/</guid>
		<description><![CDATA[What a mess.
Php 4 had no human usable XML handling implementation.And almost all libraries it&#8217;s a mess&#8230;
I found one good article about it, but it&#8217;s in russian.OK, I&#8217;ll try to translate it later (maybe only examples &#160;)
And as for me &#8211; I found what i wanted. Small and effective library.
Here it is under more tag


&#60;?php
 [...]]]></description>
			<content:encoded><![CDATA[<p>What a mess.</p>
<p>Php 4 had no human usable XML handling implementation.<br />And almost all libraries it&rsquo;s a mess&hellip;</p>
<p>I found one good article about it, but it&rsquo;s in russian.<br />OK, I&rsquo;ll try to translate it later (maybe only examples <img src="http://eyedmax.com/wp-content/uploads/2007/05/smile3.gif" / / />&nbsp;)</p>
<p>And as for me &ndash; I found what i wanted. Small and effective library.</p>
<p>Here it is under more tag</p>
<p><span id="more-29"></span></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
 <span style="color: #000088;">$p</span> <span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;&amp;&quot;</span> <span style="color: #000000; font-weight: bold;">new</span> xmlparser<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 <span style="color: #000088;">$p</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">parse</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;/* XML file*/&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 <span style="color: #990000;">print_r</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$p</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">output</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">class</span> xmlParser<span style="color: #009900;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">var</span> <span style="color: #000088;">$xml_obj</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #339933;">;</span>
   <span style="color: #000000; font-weight: bold;">var</span> <span style="color: #000088;">$output</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #000000; font-weight: bold;">var</span> <span style="color: #000088;">$attrs</span><span style="color: #339933;">;</span>
&nbsp;
   <span style="color: #000000; font-weight: bold;">function</span> xmlParser<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
       <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">xml_obj</span> <span style="color: #339933;">=</span> <span style="color: #990000;">xml_parser_create</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
       <span style="color: #990000;">xml_set_object</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">xml_obj</span><span style="color: #339933;">,</span><span style="color: #000088;">$this</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
       <span style="color: #990000;">xml_set_character_data_handler</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">xml_obj</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'dataHandler'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
       <span style="color: #990000;">xml_set_element_handler</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">xml_obj</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;startHandler&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;endHandler&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #009900;">&#125;</span>
&nbsp;
   <span style="color: #000000; font-weight: bold;">function</span> parse<span style="color: #009900;">&#40;</span><span style="color: #000088;">$path</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
       <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$fp</span> <span style="color: #339933;">=</span> <span style="color: #990000;">fopen</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$path</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;r&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
           <span style="color: #990000;">die</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Cannot open XML data file: <span style="color: #006699; font-weight: bold;">$path</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
           <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
       <span style="color: #009900;">&#125;</span>
&nbsp;
       <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span> <span style="color: #339933;">=</span> <span style="color: #990000;">fread</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$fp</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">4096</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
           <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">xml_parse</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">xml_obj</span><span style="color: #339933;">,</span> <span style="color: #000088;">$data</span><span style="color: #339933;">,</span> <span style="color: #990000;">feof</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$fp</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
               <span style="color: #990000;">die</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">sprintf</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;XML error: <span style="color: #009933; font-weight: bold;">%s</span> at line <span style="color: #009933; font-weight: bold;">%d</span>&quot;</span><span style="color: #339933;">,</span>
               <span style="color: #990000;">xml_error_string</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">xml_get_error_code</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">xml_obj</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
               <span style="color: #990000;">xml_get_current_line_number</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">xml_obj</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
               <span style="color: #990000;">xml_parser_free</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">xml_obj</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
           <span style="color: #009900;">&#125;</span>
       <span style="color: #009900;">&#125;</span>
&nbsp;
       <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>
   <span style="color: #009900;">&#125;</span>
&nbsp;
   <span style="color: #000000; font-weight: bold;">function</span> startHandler<span style="color: #009900;">&#40;</span><span style="color: #000088;">$parser</span><span style="color: #339933;">,</span> <span style="color: #000088;">$name</span><span style="color: #339933;">,</span> <span style="color: #000088;">$attribs</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$_content</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$_content</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'name'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$name</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$attribs</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
            <span style="color: #000088;">$_content</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'attrs'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$attribs</span><span style="color: #339933;">;</span>
        <span style="color: #990000;">array_push</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">output</span><span style="color: #339933;">,</span> <span style="color: #000088;">$_content</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
   <span style="color: #000000; font-weight: bold;">function</span> dataHandler<span style="color: #009900;">&#40;</span><span style="color: #000088;">$parser</span><span style="color: #339933;">,</span> <span style="color: #000088;">$data</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #000088;">$data</span><span style="color: #339933;">!=</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #000088;">$_output_idx</span> <span style="color: #339933;">=</span> <span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">output</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
            <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">output</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$_output_idx</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'content'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.=</span> <span style="color: #000088;">$data</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
   <span style="color: #009900;">&#125;</span>
&nbsp;
   <span style="color: #000000; font-weight: bold;">function</span> endHandler<span style="color: #009900;">&#40;</span><span style="color: #000088;">$parser</span><span style="color: #339933;">,</span> <span style="color: #000088;">$name</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">output</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #000088;">$_data</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array_pop</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">output</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            <span style="color: #000088;">$_output_idx</span> <span style="color: #339933;">=</span> <span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">output</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
            <span style="color: #000088;">$add</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">output</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$_output_idx</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'child'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>
                <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">output</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$_output_idx</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'child'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            <span style="color: #990000;">array_push</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">output</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$_output_idx</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'child'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$_data</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>  
   <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p></more></p>
<div class="bjtags">Tags:  <a rel="tag" href="http://technorati.com/tag/simple+PHP+4+XML+library">simple+PHP+4+XML+library</a></div>
<img src="http://eyedmax.com/?ak_action=api_record_view&id=29&type=feed" alt="" />
	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://eyedmax.com/2007/03/27/youthumb-another-video-plugin/" title="youthumb &#8211; another video plugin (March 27, 2007)">youthumb &#8211; another video plugin</a> (0)</li>
	<li><a href="http://eyedmax.com/2008/05/28/fixed-boxover-js-library/" title="Fixed BoxOver js library (May 28, 2008)">Fixed BoxOver js library</a> (3)</li>
	<li><a href="http://eyedmax.com/2007/04/25/feed-showz-plugin-update/" title="Feed ShowZ plugin update (April 25, 2007)">Feed ShowZ plugin update</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/02/15/feed-showz-plugin-for-wordpress-2x/" title="Feed ShowZ plugin for WordPress 2.x (February 15, 2007)">Feed ShowZ plugin for WordPress 2.x</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/06/04/developers-versus-clients/" title="Developers versus clients (June 4, 2007)">Developers versus clients</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://eyedmax.com/2007/05/31/php-4-and-xml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Feed ShowZ plugin update</title>
		<link>http://eyedmax.com/2007/04/25/feed-showz-plugin-update/</link>
		<comments>http://eyedmax.com/2007/04/25/feed-showz-plugin-update/#comments</comments>
		<pubDate>Wed, 25 Apr 2007 11:33:01 +0000</pubDate>
		<dc:creator>eyedmax</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[WordPress plugin]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Feed ShowZ]]></category>

		<guid isPermaLink="false">http://eyedmax.com/2007/04/25/feed-showz-plugin-update/</guid>
		<description><![CDATA[Feed ShowZ plugin updated to 0.92 version.
Added: Autocensor, Bottom link code.
Some bugs fixed.
Code re-arranged.
Available here: Feed ShowZ plugin homepage

	Related posts
	
	War Against SPam &#8211; WASP! (0)
	War Against SPam &#8211; step two! (0)
	UTF-8 fix &#8211; when charset is set to Latin1 (0)
	Sexepil &#8211; Love, Jealousy, Hate (0)
	Sendmail for Windows Freeware (0)


]]></description>
			<content:encoded><![CDATA[<p>Feed ShowZ plugin updated to 0.92 version.<br />
Added: Autocensor, Bottom link code.<br />
Some bugs fixed.<br />
Code re-arranged.</p>
<p>Available here: <a href="http://eyedmax.com/feed-showz-plugin/">Feed ShowZ plugin homepage</a></p>
<img src="http://eyedmax.com/?ak_action=api_record_view&id=23&type=feed" alt="" />
	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://eyedmax.com/2007/07/20/war-against-spam-wasp/" title="War Against SPam &#8211; WASP! (July 20, 2007)">War Against SPam &#8211; WASP!</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/07/20/war-against-spam-step-two/" title="War Against SPam &#8211; step two! (July 20, 2007)">War Against SPam &#8211; step two!</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/06/23/utf-8-fix-when-charset-is-set-to-latin1/" title="UTF-8 fix &#8211; when charset is set to Latin1 (June 23, 2007)">UTF-8 fix &#8211; when charset is set to Latin1</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/07/19/sexepil-love-jealousy-hate/" title="Sexepil &#8211; Love, Jealousy, Hate (July 19, 2007)">Sexepil &#8211; Love, Jealousy, Hate</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/08/06/sendmail-for-windows-freeware/" title="Sendmail for Windows Freeware (August 6, 2007)">Sendmail for Windows Freeware</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://eyedmax.com/2007/04/25/feed-showz-plugin-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>youthumb &#8211; another video plugin</title>
		<link>http://eyedmax.com/2007/03/27/youthumb-another-video-plugin/</link>
		<comments>http://eyedmax.com/2007/03/27/youthumb-another-video-plugin/#comments</comments>
		<pubDate>Tue, 27 Mar 2007 12:55:33 +0000</pubDate>
		<dc:creator>eyedmax</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[WordPress plugin]]></category>

		<guid isPermaLink="false">http://eyedmax.com/2007/03/27/youthumb-another-video-plugin/</guid>
		<description><![CDATA[Hi!
I wrote a new plugin &#8211; youthumb.
Lightweight and fast.
After a few checks i&#8217;ll publish it for your pleasure.

	Related posts
	
	What REALLY happened when Bill Gates was leaving The Daily Show set! (1)
	War Against SPam &#8211; WASP! (0)
	War Against SPam &#8211; step two! (0)
	Veyron vs Eurofighter: Top Gear&#8217;s turn (0)
	Veyron vs Eurofighter (0)


]]></description>
			<content:encoded><![CDATA[<p>Hi!</p>
<p>I wrote a new plugin &#8211; youthumb.<br />
Lightweight and fast.</p>
<p>After a few checks i&#8217;ll publish it for your pleasure.</p>
<img src="http://eyedmax.com/?ak_action=api_record_view&id=19&type=feed" alt="" />
	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://eyedmax.com/2007/01/31/what-really-happened-when-bill-gates-was-leaving-the-daily-show-set/" title="What REALLY happened when Bill Gates was leaving The Daily Show set! (January 31, 2007)">What REALLY happened when Bill Gates was leaving The Daily Show set!</a> (1)</li>
	<li><a href="http://eyedmax.com/2007/07/20/war-against-spam-wasp/" title="War Against SPam &#8211; WASP! (July 20, 2007)">War Against SPam &#8211; WASP!</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/07/20/war-against-spam-step-two/" title="War Against SPam &#8211; step two! (July 20, 2007)">War Against SPam &#8211; step two!</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/11/02/veyron-vs-eurofighter-top-gears-turn/" title="Veyron vs Eurofighter: Top Gear&#8217;s turn (November 2, 2007)">Veyron vs Eurofighter: Top Gear&#8217;s turn</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/10/06/veyron-vs-eurofighter/" title="Veyron vs Eurofighter (October 6, 2007)">Veyron vs Eurofighter</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://eyedmax.com/2007/03/27/youthumb-another-video-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ad RotateZ &amp; Feed ShowZ now online</title>
		<link>http://eyedmax.com/2007/02/15/ad-rotatez-feed-showz-now-online/</link>
		<comments>http://eyedmax.com/2007/02/15/ad-rotatez-feed-showz-now-online/#comments</comments>
		<pubDate>Thu, 15 Feb 2007 18:19:38 +0000</pubDate>
		<dc:creator>eyedmax</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[WordPress plugin]]></category>
		<category><![CDATA[Ad RotateZ]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Feed ShowZ]]></category>

		<guid isPermaLink="false">http://eyedmax.no-ip.org/wp/2007/02/15/ad-rotatez-feed-showz-now-online/</guid>
		<description><![CDATA[I checked both for WP 2.1 compatibility, they works.
Now files is available to download. Have fun!
Ad RotateZ plugin homepage
Feed ShowZ plugin homepage

	Related posts
	
	War Against SPam &#8211; WASP! (0)
	War Against SPam &#8211; step two! (0)
	UTF-8 fix &#8211; when charset is set to Latin1 (0)
	Sexepil &#8211; Love, Jealousy, Hate (0)
	Sendmail for Windows Freeware (0)


]]></description>
			<content:encoded><![CDATA[<p>I checked both for WP 2.1 compatibility, they works.</p>
<p>Now files is available to download. Have fun!<br />
<a href="http://eyedmax.no-ip.org/wp/ad-rotatez-plugin/">Ad RotateZ</a> plugin homepage<br />
<a href="http://eyedmax.no-ip.org/wp/feed-showz-plugin/">Feed ShowZ</a> plugin homepage</p>
<img src="http://eyedmax.com/?ak_action=api_record_view&id=16&type=feed" alt="" />
	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://eyedmax.com/2007/07/20/war-against-spam-wasp/" title="War Against SPam &#8211; WASP! (July 20, 2007)">War Against SPam &#8211; WASP!</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/07/20/war-against-spam-step-two/" title="War Against SPam &#8211; step two! (July 20, 2007)">War Against SPam &#8211; step two!</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/06/23/utf-8-fix-when-charset-is-set-to-latin1/" title="UTF-8 fix &#8211; when charset is set to Latin1 (June 23, 2007)">UTF-8 fix &#8211; when charset is set to Latin1</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/07/19/sexepil-love-jealousy-hate/" title="Sexepil &#8211; Love, Jealousy, Hate (July 19, 2007)">Sexepil &#8211; Love, Jealousy, Hate</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/08/06/sendmail-for-windows-freeware/" title="Sendmail for Windows Freeware (August 6, 2007)">Sendmail for Windows Freeware</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://eyedmax.com/2007/02/15/ad-rotatez-feed-showz-now-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Feed ShowZ plugin for WordPress 2.x</title>
		<link>http://eyedmax.com/2007/02/15/feed-showz-plugin-for-wordpress-2x/</link>
		<comments>http://eyedmax.com/2007/02/15/feed-showz-plugin-for-wordpress-2x/#comments</comments>
		<pubDate>Thu, 15 Feb 2007 17:40:13 +0000</pubDate>
		<dc:creator>eyedmax</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[WordPress plugin]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Feed ShowZ]]></category>

		<guid isPermaLink="false">http://eyedmax.no-ip.org/wp/2007/02/15/feed-showz-plugin-for-wordpress-2x/</guid>
		<description><![CDATA[Hmmm.
I started a new plugin &#8211; Feed ShowZ.
You can see homepage here: Feed ShowZ plugin.

	Related posts
	
	War Against SPam &#8211; WASP! (0)
	War Against SPam &#8211; step two! (0)
	UTF-8 fix &#8211; when charset is set to Latin1 (0)
	Sexepil &#8211; Love, Jealousy, Hate (0)
	Sendmail for Windows Freeware (0)


]]></description>
			<content:encoded><![CDATA[<p>Hmmm.<br />
I started a new plugin &#8211; Feed ShowZ.<br />
You can see homepage here: <a href="http://eyedmax.no-ip.org/wp/feed-showz-plugin/">Feed ShowZ plugin</a>.</p>
<img src="http://eyedmax.com/?ak_action=api_record_view&id=13&type=feed" alt="" />
	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://eyedmax.com/2007/07/20/war-against-spam-wasp/" title="War Against SPam &#8211; WASP! (July 20, 2007)">War Against SPam &#8211; WASP!</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/07/20/war-against-spam-step-two/" title="War Against SPam &#8211; step two! (July 20, 2007)">War Against SPam &#8211; step two!</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/06/23/utf-8-fix-when-charset-is-set-to-latin1/" title="UTF-8 fix &#8211; when charset is set to Latin1 (June 23, 2007)">UTF-8 fix &#8211; when charset is set to Latin1</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/07/19/sexepil-love-jealousy-hate/" title="Sexepil &#8211; Love, Jealousy, Hate (July 19, 2007)">Sexepil &#8211; Love, Jealousy, Hate</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/08/06/sendmail-for-windows-freeware/" title="Sendmail for Windows Freeware (August 6, 2007)">Sendmail for Windows Freeware</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://eyedmax.com/2007/02/15/feed-showz-plugin-for-wordpress-2x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ad RotateZ plugin</title>
		<link>http://eyedmax.com/2007/01/22/ad-rotatez-plugin/</link>
		<comments>http://eyedmax.com/2007/01/22/ad-rotatez-plugin/#comments</comments>
		<pubDate>Mon, 22 Jan 2007 14:17:32 +0000</pubDate>
		<dc:creator>eyedmax</dc:creator>
				<category><![CDATA[WordPress plugin]]></category>
		<category><![CDATA[Ad RotateZ]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Download]]></category>

		<guid isPermaLink="false">http://eyedmax.no-ip.org/wp/?p=3</guid>
		<description><![CDATA[The home page for Ad RotateZ plugin for WordPress 2.x is located here.
YouÂ can alwaysÂ see it at Ad RotateZ home page
Description:
Rotates local ads randomly.
Support for categories of ads.
Support for export/import of settings.
Designed for WP 2.x.
Place your ads to "ad-rotate-z" directory, then visit Options -> Ad RoteteZ for setup.
Get the plugin!

	Related posts
	
	War Against SPam &#8211; WASP! (0)
	War [...]]]></description>
			<content:encoded><![CDATA[<p>The home page for Ad RotateZ plugin for WordPress 2.x is located here.</p>
<p>YouÂ can alwaysÂ see it at <a title="Ad RotateZ plugin homepage" href="http://eyedmax.no-ip.org/wp/ad-rotatez-plugin/">Ad RotateZ home page</a></p>
<p><code>Description:<br />
Rotates local ads randomly.<br />
</code><code>Support for categories of ads.<br />
Support for export/import of settings.</code><code><br />
Designed for WP 2.x.<br />
Place your ads to "ad-rotate-z" directory, then visit <em>Options -> Ad RoteteZ</em> for setup.</code></p>
<p><a href="http://eyedmax.no-ip.org/wp/ad-rotatez-plugin/">Get the plugin!</a></p>
<img src="http://eyedmax.com/?ak_action=api_record_view&id=3&type=feed" alt="" />
	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://eyedmax.com/2007/07/20/war-against-spam-wasp/" title="War Against SPam &#8211; WASP! (July 20, 2007)">War Against SPam &#8211; WASP!</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/07/20/war-against-spam-step-two/" title="War Against SPam &#8211; step two! (July 20, 2007)">War Against SPam &#8211; step two!</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/06/23/utf-8-fix-when-charset-is-set-to-latin1/" title="UTF-8 fix &#8211; when charset is set to Latin1 (June 23, 2007)">UTF-8 fix &#8211; when charset is set to Latin1</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/07/19/sexepil-love-jealousy-hate/" title="Sexepil &#8211; Love, Jealousy, Hate (July 19, 2007)">Sexepil &#8211; Love, Jealousy, Hate</a> (0)</li>
	<li><a href="http://eyedmax.com/2007/08/06/sendmail-for-windows-freeware/" title="Sendmail for Windows Freeware (August 6, 2007)">Sendmail for Windows Freeware</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://eyedmax.com/2007/01/22/ad-rotatez-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
