<?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"
	>

<channel>
	<title>Developing PHP Applications</title>
	<atom:link href="http://www.zhannar.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zhannar.com</link>
	<description>Zhannar Personal Blog</description>
	<pubDate>Sat, 17 May 2008 04:20:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Easier way to Maximize the Import Limit of your PhpMyAdmin</title>
		<link>http://www.zhannar.com/2008/05/17/easier-way-to-maximize-the-import-limit-of-your-phpmyadmin/</link>
		<comments>http://www.zhannar.com/2008/05/17/easier-way-to-maximize-the-import-limit-of-your-phpmyadmin/#comments</comments>
		<pubDate>Sat, 17 May 2008 04:18:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP-MySQL]]></category>

		<category><![CDATA[config.inc.php]]></category>

		<category><![CDATA[php.ini]]></category>

		<category><![CDATA[phpMyAdmin]]></category>

		<category><![CDATA[post_max_size]]></category>

		<category><![CDATA[upload limit]]></category>

		<category><![CDATA[upload_max_filesize]]></category>

		<guid isPermaLink="false">http://www.zhannar.com/2008/05/17/easier-way-to-maximize-the-import-limit-of-your-phpmyadmin/</guid>
		<description><![CDATA[Just simply add this code to the top of your config.inc.php file.

&#60;?
ini_set('memory_limit', '32M');
ini_set('upload_max_filesize', '20M');
ini_set('post_max_size', '20M');
ini_set('max_execution_time', '1800');
ini_set('max_input_time', '1800');
// &#8230; rest of the config.inc.php &#8230;//
?&#62;
This is much more helpful if you don&#8217;t have access to &#8216;.htaccess&#8217; file.
]]></description>
			<content:encoded><![CDATA[<p>Just simply add this code to the top of your config.inc.php file.<br />
<code><br />
&lt;?<br />
ini_set('memory_limit', '32M');<br />
ini_set('upload_max_filesize', '20M');<br />
ini_set('post_max_size', '20M');<br />
ini_set('max_execution_time', '1800');<br />
ini_set('max_input_time', '1800');</code></p>
<p>// &#8230; rest of the config.inc.php &#8230;//</p>
<p>?&gt;</p>
<p>This is much more helpful if you don&#8217;t have access to &#8216;.htaccess&#8217; file.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zhannar.com/2008/05/17/easier-way-to-maximize-the-import-limit-of-your-phpmyadmin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Javascript&#8217;s function that fetch URL parameters. (PHP&#8217;s $_GET emulator)</title>
		<link>http://www.zhannar.com/2008/04/07/javascripts-function-that-fetch-url-parameters-phps-_get-emulator/</link>
		<comments>http://www.zhannar.com/2008/04/07/javascripts-function-that-fetch-url-parameters-phps-_get-emulator/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 04:08:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[emulator]]></category>

		<category><![CDATA[function]]></category>

		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://www.zhannar.com/2008/04/07/javascripts-function-that-fetch-url-parameters-phps-_get-emulator/</guid>
		<description><![CDATA[Here&#8217;s my javascript function that fetch URL parameters (kinda PHP&#8217;s $_GET emulator).

function URL_param(param){
    // this condition suppress error
    if(location.href.match(param+'=')) return location.href.toString().split(param+'=')[1].split(&#8217;&#38;&#8217;)[0];
}
eg.
URL:
http://www.zhannar.com/?param1=value1&#38;param2=value2
JS script:
alert(URL_param('param2'));
returns:
value2
Simple. 
]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s my javascript function that fetch URL parameters (kinda PHP&#8217;s $_GET emulator).</p>
<pre style="overflow-x:scroll;width:450px;">
function URL_param(param){
    // this condition suppress error
    if(location.href.match(param+'=')) return location.href.toString().split(param+'=')[1].split(&#8217;&amp;&#8217;)[0];
}</pre>
<p>eg.</p>
<p>URL:</p>
<pre>http://www.zhannar.com/?param1=value1&amp;param2=value2</pre>
<p>JS script:</p>
<pre>alert(URL_param('param2'));</pre>
<p>returns:</p>
<pre>value2</pre>
<p>Simple. <img src='http://www.zhannar.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.zhannar.com/2008/04/07/javascripts-function-that-fetch-url-parameters-phps-_get-emulator/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Authentication with Zend Framework Article</title>
		<link>http://www.zhannar.com/2008/03/29/authentication-with-zend-framework-article/</link>
		<comments>http://www.zhannar.com/2008/03/29/authentication-with-zend-framework-article/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 18:40:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP-MySQL]]></category>

		<category><![CDATA[Zend Framework]]></category>

		<category><![CDATA[articles]]></category>

		<category><![CDATA[authentication]]></category>

		<category><![CDATA[framework]]></category>

		<category><![CDATA[login]]></category>

		<category><![CDATA[readings]]></category>

		<guid isPermaLink="false">http://www.zhannar.com/2008/03/29/authentication-with-zend-framework-article/</guid>
		<description><![CDATA[Another great article for Zend Framework. It is all about &#8216;Login&#8217; and &#8216;Authentication&#8217; using this framework.
Link: Login and Authentication with Zend Framework
Have fun reading. This seems to be very helpful article. 
]]></description>
			<content:encoded><![CDATA[<p>Another great article for Zend Framework. It is all about &#8216;Login&#8217; and &#8216;Authentication&#8217; using this framework.</p>
<p>Link: <a href="http://weierophinney.net/matthew/archives/165-Login-and-Authentication-with-Zend-Framework.html" title="Login and Authentication with Zend Framework">Login and Authentication with Zend Framework</a></p>
<p>Have fun reading. This seems to be very helpful article. <img src='http://www.zhannar.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.zhannar.com/2008/03/29/authentication-with-zend-framework-article/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Reducing spammers using your &#8220;Contact Form&#8221; as a gateway</title>
		<link>http://www.zhannar.com/2008/03/06/reducing-spammers-using-your-contact-form-as-a-gateway/</link>
		<comments>http://www.zhannar.com/2008/03/06/reducing-spammers-using-your-contact-form-as-a-gateway/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 16:28:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP-MySQL]]></category>

		<category><![CDATA[contact form]]></category>

		<category><![CDATA[headers]]></category>

		<category><![CDATA[mail]]></category>

		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.zhannar.com/2008/03/06/reducing-spammers-using-your-contact-form-as-a-gateway/</guid>
		<description><![CDATA[This is a simple function to eliminate those unwanted strings coming from the user&#8217;s input. In this way, we can reduce those spammers using your Contact Form as their gateway to spam.

]]></description>
			<content:encoded><![CDATA[<p>This is a simple function to eliminate those unwanted strings coming from the user&#8217;s input. In this way, we can reduce those spammers using your Contact Form as their gateway to spam.</p>
<p><a href="http://www.zhannar.com/wp-content/uploads/2008/03/trim-unwanted-headers.jpg" title="PHP trim unwanted headers for mail"><img src="http://www.zhannar.com/wp-content/uploads/2008/03/trim-unwanted-headers.jpg" alt="PHP trim unwanted headers for mail" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.zhannar.com/2008/03/06/reducing-spammers-using-your-contact-form-as-a-gateway/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Yet another tutorial blog for ASP.NET, Photoshop, and CSS</title>
		<link>http://www.zhannar.com/2008/02/29/yet-another-tutorial-blog-for-aspnet-photoshop-and-css/</link>
		<comments>http://www.zhannar.com/2008/02/29/yet-another-tutorial-blog-for-aspnet-photoshop-and-css/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 03:12:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[off-topic]]></category>

		<guid isPermaLink="false">http://www.zhannar.com/2008/02/29/yet-another-tutorial-blog-for-aspnet-photoshop-and-css/</guid>
		<description><![CDATA[A friend of mine has setup his new tutorial blog.
Photoshop, CSS and ASP.NET Tutorials
]]></description>
			<content:encoded><![CDATA[<p>A friend of mine has setup his new tutorial blog.</p>
<p><a href="http://www.jimboypogi.com/" title="Visit the site">Photoshop, CSS and ASP.NET Tutorials</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.zhannar.com/2008/02/29/yet-another-tutorial-blog-for-aspnet-photoshop-and-css/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to setup your WAMP with your own choice of directory (Part 3)</title>
		<link>http://www.zhannar.com/2008/01/24/how-to-setup-your-wamp-with-your-own-choice-of-directory-part-3/</link>
		<comments>http://www.zhannar.com/2008/01/24/how-to-setup-your-wamp-with-your-own-choice-of-directory-part-3/#comments</comments>
		<pubDate>Thu, 24 Jan 2008 13:48:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP-MySQL]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Apache]]></category>

		<category><![CDATA[Installation]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[Tutorial]]></category>

		<category><![CDATA[WAMP]]></category>

		<guid isPermaLink="false">http://www.zhannar.com/2008/01/24/how-to-setup-your-wamp-with-your-own-choice-of-directory-part-3/</guid>
		<description><![CDATA[Yeah I know that it&#8217;s been a while since my last post about this series. But don&#8217;t worry, here it is.   
This is the last part of my WAMP setup series
In this part we finalize our WAMP Server (configurations and settings).
1. Create a folder named &#8220;php&#8221; under &#8220;C:/server/apache/modules&#8221; directory.

2. Extract your PHP zip [...]]]></description>
			<content:encoded><![CDATA[<p>Yeah I know that it&#8217;s been a while since my last post about this series. But don&#8217;t worry, here it is. <img src='http://www.zhannar.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> <img src='http://www.zhannar.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>This is the last part of my WAMP setup series</p>
<p><strong>In this part we finalize our WAMP Server (configurations and settings).</strong></p>
<p>1. Create a folder named &#8220;php&#8221; under &#8220;C:/server/apache/modules&#8221; directory.</p>
<p><img src="/Files/Articles/Images/0801/php1.jpg" border="0" /></p>
<p>2. Extract your PHP zip file here and copy this highlighted files.</p>
<p><img src="/Files/Articles/Images/0801/php2.jpg" border="0" /></p>
<p>3. And paste it under &#8220;C:/WINDOWS/system32&#8243;</p>
<p><img src="/Files/Articles/Images/0801/php3.jpg" border="0" /></p>
<p>4. Copy the distributed php.ini file</p>
<p><img src="/Files/Articles/Images/0801/php4.jpg" border="0" /></p>
<p>5. And put it under &#8220;C:\server\apache\conf&#8221; directory (where your apache&#8217;s httpd.conf reside).</p>
<p><img src="/Files/Articles/Images/0801/php5.jpg" border="0" /></p>
<p>6. Create a temporary folder under your server directory (is this case, &#8220;C:/server/&#8221;). This will be use in your &#8220;session.save_path&#8221; setting.</p>
<p><img src="/Files/Articles/Images/0801/php6.jpg" border="0" /></p>
<p>7. Start editing your php.in file set your &#8220;extension_dir&#8221; to &#8220;C:/server/apache/modules/php/ext&#8221; and load most commonly used extensions. Also set session.save_path here.</p>
<p><img src="/Files/Articles/Images/0801/php7.jpg" border="0" /></p>
<p>8. Now, Start editing your apache&#8217;s httpd.conf file. Here, set your DirectoryIndex, DocumentRoot (where your public files are located.). Also change your directory path &#8220;&lt;Directory &#8230; &gt;&#8221; same as your DocumentRoot&#8217;s value.</p>
<p><img src="/Files/Articles/Images/0801/php8.jpg" border="0" /></p>
<p>Load the PHP as module in your apache server:</p>
<p><strong>LoadModule php5_module &#8220;C:/server/apache/modules/php/php5apache2_2.dll&#8221;</strong></p>
<p>Then add the filetype of the php. (you can also add .php5 and .php3 if you want to)</p>
<p><strong>AddType application/x-httpd-php .php</strong></p>
<p>And lastly, locate your php.ini, the one that you have edit.</p>
<p><strong>PHPIniDir &#8220;C:/server/apache/conf&#8221;</strong></p>
<p>&#8230;and that&#8217;s all. Happy PHPing!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zhannar.com/2008/01/24/how-to-setup-your-wamp-with-your-own-choice-of-directory-part-3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Install Aspell for your WAMP setup</title>
		<link>http://www.zhannar.com/2008/01/19/install-aspell-for-your-wamp-setup/</link>
		<comments>http://www.zhannar.com/2008/01/19/install-aspell-for-your-wamp-setup/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 00:18:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP-MySQL]]></category>

		<category><![CDATA[Aspell]]></category>

		<category><![CDATA[Install]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[Pspell]]></category>

		<category><![CDATA[WAMP]]></category>

		<guid isPermaLink="false">http://www.zhannar.com/2008/01/19/install-aspell-for-your-wamp-setup/</guid>
		<description><![CDATA[Download this files first:  (http://aspell.net/)
Aspell installer: Aspell-0-50-3-3-Setup.exe
Precompiled dictionary (English): Aspell-en-0.50-2-3_2.exe
Install this files, then go to &#8220;C:\Program Files\Aspell\bin&#8221; copy the following files
- aspell-15.dll
- pspell-15.dll
Paste it under C:\windows\system32\
You can now enable the pspell extension through your php.ini file by uncommenting this line:
extension=php_pspell.dll
Check it through your phpinfo file.

sweeet&#8230; right?  
]]></description>
			<content:encoded><![CDATA[<p>Download this files first:  (<a href="http://aspell.net/win32/" title="Aspell website">http://aspell.net/</a>)</p>
<p>Aspell installer: <a href="http://ftp.gnu.org/gnu/aspell/w32/Aspell-0-50-3-3-Setup.exe" target="_blank" title="installer aspell">Aspell-0-50-3-3-Setup.exe</a></p>
<p>Precompiled dictionary (English): <a href="http://ftp.gnu.org/gnu/aspell/w32/Aspell-en-0.50-2-3.exe" title="installer aspell language pack" target="_blank">Aspell-en-0.50-2-3_2.exe</a></p>
<p>Install this files, then go to &#8220;C:\Program Files\Aspell\bin&#8221; copy the following files</p>
<p>- aspell-15.dll<br />
- pspell-15.dll</p>
<p>Paste it under C:\windows\system32\</p>
<p>You can now enable the pspell extension through your php.ini file by uncommenting this line:</p>
<p>extension=php_pspell.dll</p>
<p>Check it through your phpinfo file.</p>
<p><a href="http://www.zhannar.com/wp-content/uploads/2008/01/pspell-install.jpg" title="pspell enable"><img src="http://www.zhannar.com/wp-content/uploads/2008/01/pspell-install.jpg" alt="pspell enable" /></a></p>
<p>sweeet&#8230; right?  <img src='http://www.zhannar.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.zhannar.com/2008/01/19/install-aspell-for-your-wamp-setup/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Simple Tag Cloud Code</title>
		<link>http://www.zhannar.com/2008/01/11/simple-tag-cloud-code/</link>
		<comments>http://www.zhannar.com/2008/01/11/simple-tag-cloud-code/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 14:40:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP-MySQL]]></category>

		<category><![CDATA[code snippet]]></category>

		<category><![CDATA[tag cloud]]></category>

		<guid isPermaLink="false">http://www.zhannar.com/2008/01/11/simple-tag-cloud-code/</guid>
		<description><![CDATA[Don&#8217;t have any idea how to create a simple tag cloud for your application?
Here&#8217;s a simple code snippet to start with:
PHP Tag Cloud Tutorial
It&#8217;s pretty much that simple.
]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t have any idea how to create a simple tag cloud for your application?</p>
<p>Here&#8217;s a simple code snippet to start with:</p>
<p><a href="http://prism-perfect.net/archive/php-tag-cloud-tutorial/" title="PHP Tag Cloud Tutorial">PHP Tag Cloud Tutorial</a></p>
<p>It&#8217;s pretty much that simple.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zhannar.com/2008/01/11/simple-tag-cloud-code/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New to Code Igniter?</title>
		<link>http://www.zhannar.com/2008/01/02/new-to-code-igniter/</link>
		<comments>http://www.zhannar.com/2008/01/02/new-to-code-igniter/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 13:05:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[code igniter]]></category>

		<category><![CDATA[framework]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.zhannar.com/2008/01/02/new-to-code-igniter/</guid>
		<description><![CDATA[If you are new to Code Igniter (sometimes it&#8217;s called CI) and eager to learn in a fast way, why not try to watch their video tutorial.

I use this Framework only when I develop an application to a PHP4 based server.
]]></description>
			<content:encoded><![CDATA[<p>If you are new to <a href="http://codeigniter.com/" title="Code Igniter" target="_blank">Code Igniter</a> (sometimes it&#8217;s called CI) and eager to learn in a fast way, why not try to watch their video tutorial.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/GRK3QcYjbNM&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/GRK3QcYjbNM&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p>I use this Framework only when I develop an application to a PHP4 based server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zhannar.com/2008/01/02/new-to-code-igniter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>End of 2007, Start of 2008</title>
		<link>http://www.zhannar.com/2008/01/01/end-of-2007-start-of-2008/</link>
		<comments>http://www.zhannar.com/2008/01/01/end-of-2007-start-of-2008/#comments</comments>
		<pubDate>Mon, 31 Dec 2007 16:50:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Seasons]]></category>

		<category><![CDATA[holiday seasons]]></category>

		<category><![CDATA[off-topic]]></category>

		<guid isPermaLink="false">http://www.zhannar.com/2008/01/01/end-of-2007-start-of-2008/</guid>
		<description><![CDATA[2007 is over, 2008 is coming&#8230;
Did you missed something in 2007? try this
HAPPY NEW YEAR TO ALL!!!  



]]></description>
			<content:encoded><![CDATA[<p>2007 is over, 2008 is coming&#8230;</p>
<p>Did you missed something in 2007? <a href="http://www.time.com/time/specials/2007/top10/0,30576,1686204,00.html" title="Tops of 2007" target="_blank">try this</a></p>
<p>HAPPY NEW YEAR TO ALL!!! <img src='http://www.zhannar.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-5349296303916920";
//468x60, created 12/18/07
google_ad_slot = "6222464195";
google_ad_width = 468;
google_ad_height = 60;
//--></script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.zhannar.com/2008/01/01/end-of-2007-start-of-2008/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
