Download & Install Windows XP Service Pack 3(SP3)

Microsoft has released XP SP3 with bugfixes and new features.? This version includes old released update for Windows XP and bug fixes released in SP2. SP3 also includes following new? features: Support for Microsoft’s Network Access Protection security technology Microsoft Kernel Mode Cryptographic Module Black Hole Router detection algorithm Keyless…continue reading →

Bill Gates Leaving Microsoft – Retirement Session June 2008

httpv://www.youtube.com/watch?v=3HA4lSUhlbw Bill Gates is retired from Microsoft at the age of 52 to spend more time for the Bill and Melinda Gates Foundation. Gates is still largest share holder and Microsoft chairman but left at June 27, 2008 as regular employee. Now, it is up to Bill Gates successors how…continue reading →

Multiple Blog Posting With WBlogger Offline Mass Blogging Tool

I was wondering if i could have a tool that can write post to my blogs offline as well as post to multiple blog. A little effort landed me on w.blogger page. W.Blogger is ultimate tool for blog publising from destop. If you have a long list of your blogs…continue reading →

How To Clean Special Characters From PHP String

If you are looking for the PHP special characters clean function then this post might be useful for you. This function can used to remove special character as well as able to replace specific character with other equivalent character or string. Here is detailed explanation of function: $specialCharacters Array: This array used to replace special character with other character or string. if you want to interchange (+) with (plus) then you need to specify in the array. You can add/remove array element according to your requirement. strtr function: This function used to replace other language special characters to plain English character. You can remove this line safely but ensure before that these characters not in your string and you don't need to remove them. Last 4 line used to remove other unknown unwanted special characters. [sourcecode language='php'] function just_clean($string) { // Replace other special chars $specialCharacters = array( '#' => '', '$' => '', '%' => '', '&' => '', '@' => '', '.' => '', '€' => '', '+' => '', '=' => '', '§' => '', '\\' => '', '/' => '', ); while (list($character, $replacement) = each($specialCharacters)) { $string = str_replace($character, '-' . $replacement . '-', $string); } $string = strtr($string, "ÀÁÂÃÄÅ? áâãäåÒÓÔÕÖØòóôõöøÈÉÊËèéêëÇçÌÍÎÏìíîïÙÚÛÜùúûüÿÑñ", "AAAAAAaaaaaaOOOOOOooooooEEEEeeeeCcIIIIiiiiUUUUuuuuyNn" ); // Remove all remaining other unknown characters $string = preg_replace('/[^a-zA-Z0-9\-]/', ' ', $string); $string = preg_replace('/^[\-]+/', '', $string); $string = preg_replace('/[\-]+$/', '', $string); $string = preg_replace('/[\-]{2,}/', ' ', $string); return $string; } [/sourcecode]