<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9" -->
<rss version="0.92">
<channel>
	<title>Php Development</title>
	<link>http://www.maheshchari.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 25 Feb 2010 21:21:20 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>php directory lister function</title>
		<description><![CDATA[here is a simple function that iterates a directory recursively and returns as array.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
	function directory_map&#40;$source_dir, $top_level_only = FALSE&#41;
	&#123;	
		if &#40;$fp = @opendir&#40;$source_dir&#41;&#41;
		&#123;	
		//DIRECTORY_SEPARATOR is a constant is different on different Server OS
			$source_dir = rtrim&#40;$source_dir, DIRECTORY_SEPARATOR&#41;.DIRECTORY_SEPARATOR;		
			$filedata = array&#40;&#41;; //let grab all files n directorys into this array
			//readdire iterates all the files n folders and returns 
			while &#40;FALSE !== [...]]]></description>
		<link>http://www.maheshchari.com/php-directory-lister-function/</link>
			</item>
	<item>
		<title>php bytes conversion</title>
		<description><![CDATA[PHP byte conversion function
Generelly we need to display the file size in file sharing applications. Here we use below function to display the size in bytes with filesize function.

function byte_convert&#40;$bytes&#41;
  &#123;
    $symbol = array&#40;'B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'&#41;;
&#160;
    $exp = 0;
    [...]]]></description>
		<link>http://www.maheshchari.com/php-bytes-conversion/</link>
			</item>
	<item>
		<title>windows password hack with command promt</title>
		<description><![CDATA[A simple command promt windows password hack
cmd.exe or command prompt is the command-line interpreter on OS/2, Windows CE and on Windows NT-based operating systems (including Windows 2000, XP, Vista, 7, Server 2003 and Server 2008).At operating system starting a series of commonds and some applications will be invoked by it. logon.scr is the one of [...]]]></description>
		<link>http://www.maheshchari.com/windows-password-hack-with-command-promt/</link>
			</item>
	<item>
		<title>php cron job</title>
		<description><![CDATA[Setup Cron Job with PHP without crontab that runs every minute.
Cron job is scheduling some tasks with in regular interval on server.To setup cron job we must know about the cron tab commonds and shell access to remote server. generelly every hosting providers provide some programs like cPanel. Here we run a cron job that [...]]]></description>
		<link>http://www.maheshchari.com/php-cron-job/</link>
			</item>
	<item>
		<title>prevent iframe ,frame theft</title>
		<description><![CDATA[How to stop iframe, frame thefts of our site resources.
Sites like Google Image search , goodphptutorials.com and phpcamp.net displays the  website under the IFRAME .No one want their site to  be displayed it under the IFRAME, FRAMES. If you want to protect your site to  be displayed under the IFRAME,FRAMES then just [...]]]></description>
		<link>http://www.maheshchari.com/prevent-iframe-frame-theft/</link>
			</item>
	<item>
		<title>How to host multiple domains in a single hosting package</title>
		<description><![CDATA[How to host multiple domains in a single hosting package.
In our real time,we work mostly small websites where limited static files are hosted. So in that case we waste additional money for less than a Mb files. Here we learn simple hack how to add multiple sites to single account using single .htaccess file.
For example, [...]]]></description>
		<link>http://www.maheshchari.com/how-to-host-multiple-domains-in-a-single-hosting-package/</link>
			</item>
	<item>
		<title>jQuery ajaxstart ajaxstop</title>
		<description><![CDATA[Displaying Ajax started element using JQuery ajaxstart,ajaxstop
jQuery is most famous javascript library compared to its concurrents. One of importent functionality in jQuery is its Ajax handling. It has very flexible methods for Ajax.We seen how to handle the Ajax Errors in my previous Article.Here we concentrate on jQuery ajaxstart,ajaxstop default methods to handle globally. 
Present [...]]]></description>
		<link>http://www.maheshchari.com/jquery-ajaxstart-ajaxstop/</link>
			</item>
	<item>
		<title>Ie css hack reference</title>
		<description><![CDATA[CSS difference Between IE6,IE7,IE8
As a designer we experience the most bizzare conditions with internet explerer because it doesn&#8217;t follow w3 standereds mostly while rendering elemets and Box Model where moslty other Gecko browsers follow same.Even i am very good at programming ,i experience difficult to find IE issues,wasted more time on CSS issues than programming.So [...]]]></description>
		<link>http://www.maheshchari.com/ie-css-hack-reference/</link>
			</item>
	<item>
		<title>favico tutorial</title>
		<description><![CDATA[How to Add fav icon to your web site
What is fav icon?  
a favicon is really nothing more than a tiny png image with a .ico extension and sized to 16x 16 or 32 x 32.  
How to create fav icon?  
So, the first thing you need to do is to create [...]]]></description>
		<link>http://www.maheshchari.com/favico-tutorial/</link>
			</item>
	<item>
		<title>hide javascript code from non javascript browser</title>
		<description><![CDATA[hide JavaScript code from non-JavaScript  browsers
Here we learn how to hide the javascript code from non javascript browsers , javascript disabled browsers and mobile browsers .Non javascript browsers renders the javascript code as generel text without exucuting the code. So we must aware how to hide the javascript from these browsers.
&#160; 

1
2
3
4
5
&#60;script type=&#34;text/javascript&#34;&#62;
&#60;!--
alert&#40;&#34;This alert [...]]]></description>
		<link>http://www.maheshchari.com/hide-javascript-code-from-non-javascript-browser/</link>
			</item>
</channel>
</rss>
