<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.5.1" -->
<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>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');

// ... rest of the config.inc.php ...//

?&#62;

This is much more helpful if you don't have access to '.htaccess' 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>Here's my javascript function that fetch URL parameters (kinda PHP'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>Another great article for Zend Framework. It is all about 'Login' and 'Authentication' 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>This is a simple function to eliminate those unwanted strings coming from the user'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>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>Yeah I know that it's been a while since my last post about this series. But don't worry, here it is. ;) :P

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 "php" under "C:/server/apache/modules" directory.



2. ...</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>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 "C:\Program Files\Aspell\bin" 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... 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>Don't have any idea how to create a simple tag cloud for your application?

Here's a simple code snippet to start with:

PHP Tag Cloud Tutorial

It'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>If you are new to Code Igniter (sometimes it'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>2007 is over, 2008 is coming...

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>
