<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>Developing PHP Applications</title>
	<link>http://www.zhannar.com</link>
	<description>Zhannar Personal Blog</description>
	<lastBuildDate>Sat, 17 May 2008 04:20:54 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Easier way to Maximize the Import Limit of your PhpMyAdmin</title>
		<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>
		<link>http://www.zhannar.com/2008/05/17/easier-way-to-maximize-the-import-limit-of-your-phpmyadmin/</link>
			</item>
	<item>
		<title>Javascript&#8217;s function that fetch URL parameters. (PHP&#8217;s $_GET emulator)</title>
		<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('&#38;')[0];
}
eg.
URL:
http://www.zhannar.com/?param1=value1&#38;param2=value2
JS script:
alert(URL_param('param2'));
returns:
value2
Simple.  
]]></description>
		<link>http://www.zhannar.com/2008/04/07/javascripts-function-that-fetch-url-parameters-phps-_get-emulator/</link>
			</item>
	<item>
		<title>Authentication with Zend Framework Article</title>
		<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>
		<link>http://www.zhannar.com/2008/03/29/authentication-with-zend-framework-article/</link>
			</item>
	<item>
		<title>Reducing spammers using your &#8220;Contact Form&#8221; as a gateway</title>
		<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>
		<link>http://www.zhannar.com/2008/03/06/reducing-spammers-using-your-contact-form-as-a-gateway/</link>
			</item>
	<item>
		<title>Yet another tutorial blog for ASP.NET, Photoshop, and CSS</title>
		<description><![CDATA[A friend of mine has setup his new tutorial blog.
Photoshop, CSS and ASP.NET Tutorials
]]></description>
		<link>http://www.zhannar.com/2008/02/29/yet-another-tutorial-blog-for-aspnet-photoshop-and-css/</link>
			</item>
	<item>
		<title>How to setup your WAMP with your own choice of directory (Part 3)</title>
		<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 ]]></description>
		<link>http://www.zhannar.com/2008/01/24/how-to-setup-your-wamp-with-your-own-choice-of-directory-part-3/</link>
			</item>
	<item>
		<title>Install Aspell for your WAMP setup</title>
		<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>
		<link>http://www.zhannar.com/2008/01/19/install-aspell-for-your-wamp-setup/</link>
			</item>
	<item>
		<title>Simple Tag Cloud Code</title>
		<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>
		<link>http://www.zhannar.com/2008/01/11/simple-tag-cloud-code/</link>
			</item>
	<item>
		<title>New to Code Igniter?</title>
		<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>
		<link>http://www.zhannar.com/2008/01/02/new-to-code-igniter/</link>
			</item>
	<item>
		<title>End of 2007, Start of 2008</title>
		<description><![CDATA[2007 is over, 2008 is coming&#8230;
Did you missed something in 2007? try this
HAPPY NEW YEAR TO ALL!!!  
]]></description>
		<link>http://www.zhannar.com/2008/01/01/end-of-2007-start-of-2008/</link>
			</item>
</channel>
</rss>
