Court Marriage vs Full Dhamaal Marriage

Marriage is a social, religious, spiritual and/or legal union of individuals that creates kinship. This union may also be called matrimony, while the ceremony that marks its beginning is usually called a wedding and the married status created is sometimes called wedlock.

Marriage is an institution in which interpersonal relationships (usually intimate and sexual) are acknowledged by the state, by religious authority, or both. It is often viewed as a contract. Civil marriage is the legal concept of marriage as a governmental institution, in accordance with marriage laws of the jurisdiction. If recognized by the state, by the religion(s) to which the parties belong or by society in general, the act of marriage changes the personal and social status of the individuals who enter into it.

People marry for many reasons, but usually one or more of the following: legal, social, emotional, and economic stability; the formation of a family unit; procreation and the education and nurturing of children; legitimizing sexual relations; public declaration of love.

As the topic says that few people love Court Marriage and few Full Dhamaal Marriage (Party to the rooftop)
Few people think that marriage is pure and should be limited to only a few people like a small gathering in a restaurant after a quick marriage in the court of law , but for some court marriage is equally important but first come a great bash and fun with family and friends having a great time of their life. They believe that marriage is done once in a life time so they like to make it a GRAND one. In Full Dhamaal Marriage we first get married exchaning our vows and also get registered in court to make it legal, so you see its a package deal of enjoyment and law.

So the question now is what do you think?

What do you believe in?

And why?

Read more »

Regular Expressions

Regular Expressions with PHP:

Regular Expressions is a powerful tool where in one can match for a particular string with set of rules defined. One can also match and replace a given string, replacing is an optional functionality.

In short, Regular Expressions are very useful in:

  1. Validating forms and end results.
  2. Searching for a particular string or value.
  3. Search and Replace a particular string or value.
  4. It returns precise results.

 

PHP supports two different types of regular expressions: POSIX-extended and Perl-Compatible Regular Expressions (PCRE). The PCRE functions are more powerful than the POSIX ones and faster too.

 

For example:

If you search for the regular expression “dance” in the string “Sam dances to the street beats!” you get a match because ” dance” occurs in that string and hence will return true or the given string.

 

Let’s now start in understanding the advanced part. There are many special characters that give different meaning to the regular expression. It helps us to match a string with wildcards or special characters and we can mix and match any string we like.

 

The characters that match themselves are called literals. The characters that have special meanings are called metacharacters.

 

Let us understand them better:

  1. caret (^) : A caret (^) character at the beginning of a regular expression indicates that it must match the beginning of the string. 
  2. dollar sign ($): A dollar sign ($) is used to match strings that ends with the given pattern. 
  3. dot (.) : A dot (.) metacharacter matches any single character only. 
  4. vertical pipe (|) : A vertical pipe (|) metacharacter is used for alternatives in a regular expression. Its just like an ‘or’ condition. 
  5. backslash (\): If you want to match a literal metacharacter in a pattern, you have to escape it with a backslash. 
  6. plus (+) : The plus sign means match one or more of the preceding expression.
  7. asterix (*): An asterix sign means match zero or more of the preceding expression.
  8. question (?): The question sign means match zero or one of the preceding expression.
  9. curly braces ({}): The curly braces can be used differently as it servers more than one purpose, like:  

 

 

 

  • {x} : match exactly x occurrences of the preceding expression. 
  • {x,} : match x or more occurrences of the preceding expression. 
  • {x,y}: match x or more occurrences of the preceding expression but not more than y times.

 

 

 

We can group the characters inside a pattern like this:

  • Normal characters which match themselves like hello
  • Start and end indicators as ^ and $
  • Count indicators like +,*,?
  • Logical operator like |
  • Grouping with {},(),[]

 

Impressive!!!!!

So now you are ready to mix and match some regular expressions, lets start with some simple examples:

 

Regular Expression

Meaning

 A  Will match string having character uppercase A
 a  Will match string having character lowercase A
 [a-z]   Will match string having characters between the  a to z
 [0-9]   Will match string having numbers between the 0  to 9
 ^[a-z]  Will match string having characters between the  a to z and must start with an alphabet
 [a-z]$  Will match string having characters between the  a to z and must end with an alphabet
 [a-z]+  Will match string having characters between the  a to z and must have atleast one alphabet
 [a-z]?  Will match string having characters between the  a to z and may have zero or more alphabets

 

Programming PHP and Regular Expression

PHP provides functions to find matches in text, to replace each match with other text (a la search and replace), and to find matches among the elements of a list. The functions are:

  • preg_match()
  • preg_match_all()
  • preg_replace()
  • preg_replace_callback()
  • preg_grep()
  • preg_split()
  • preg_last_error()
  • preg_quote()
[Note: We will take the examples based on preg_match() function.]

Lets us first understand the basic meaning and usage of preg_match:

This is used to perform a regular expression match (PHP 4, PHP 5)

Syntax:

int preg_match ( string pattern, string subject [, array &matches [, int flags [, int offset]]] )

Searches subject for a match to the regular expression given in pattern.

Lets us go a lttle deeper in understanding the parameters passed:

pattern

         The pattern to search for, as a string.

subject

        The input string.

matches

        If a match is provided, then it is filled with the results of search. $matches[0] will contain the text that matched the full pattern, $matches[1] will have the text that matched the first captured parenthesized sub pattern, and so on.

flags

       Flags can be the following flag:

       PREG_OFFSET_CAPTURE

       If this flag is passed, for every occurring match the appendant string offset will also be returned.

       Note that this changes the return value in an array where every element is an array consisting of the

       matched string at index 0 and its string offset into subject at index 1.

offset

        Normally, the search starts from the beginning of the subject string.

        The optional parameter offset can be used to specify the alternate place from which to start the search (in bytes).

 

So let’s start with a small example:

<?php
     
$subject = "abcdef";
     
$pattern = '/^def/';
     
preg_match($pattern, $subject, $matches, PREG_OFFSET_CAPTURE, 3);
     
print_r($matches);
?>

 

The above example will output:

Array
(
)

While this example

 

<?php
     
$subject = "abcdef";
     
$pattern = '/^def/';
     
preg_match($pattern, substr($subject,3), $matches, PREG_OFFSET_CAPTURE);
     
print_r($matches);
?>

 

Will produce

Array
(
   [0] => Array
       (
           [0] => def
           [1] => 0
       ) 

)

 

Reference:-

  1. regular expressions info
  2. web cheat sheet
  3. PHP Manual : preg_match
  4. phpro regex
  5. ibm developerworks
  6. practical php regular expression recipes

 

There is another surprise for all of you’ll!!!!

We have faced many difficulties in implementing or understand complex regular expressions and we had to test it over and over and over again to get it right.

So to lessen the burden I have written a script that will test the regular expression and the string to be matched and return the Boolean (true / false) with the first occurrence of the string.

It’s really helped me in mastering my skills and techniques in regular expression.

So do try it out………..

Also share in your tips and techniques regarding regular expressions and PHP.

Requirements:

  • Any server having PHP installed
  • That’s it!!!!

You can find the script here:

regular_expression_php

 

Preview:

 

Regular Expression and Preg Match

Regular Expression and Preg Match

Secure PHP Applications (PHP Security)

To understand PHP security better let us first understand what is PHP and Security

Security is a process, not a product, and adopting a sound approach to security during the process of application development will allow you to produce tighter, more robust code.

(PHP Hypertext Preprocessor) A scripting language used to create dynamic Web pages. With syntax from C, Java and Perl, PHP code is embedded within HTML pages for server side execution. It is commonly used to extract data out of a database and present it on the Web page

PHP is a powerful scripting language for building web applications, and also one of the easiest ways for hackers to gain access to your web server. Developers need to understand how their scripts can be exploited in order to protect them.

PHP is widely used in many high-end applications that maybe a Web Based (Internet) or and Intranet Applications. We can say that from the total PHP in Web Based (Internet) Applications : 80% and Intranet Applications:20%.

As IBM as suggested few basic principles that we could follow to make our website secure and guard our application from any vulnerabilities:

Validate input
Guard your file system
Guard your database
Guard your session data
Guard against Cross-Site Scripting (XSS) vulnerabilities
Verify form posts
Protect against Cross-Site Request Forgeries (CSRF)
  1. Validate input
  2. Guard your file system
  3. Guard your database
  4. Guard your session data
  5. Guard against Cross-Site Scripting (XSS) vulnerabilities
  6. Verify form posts
  7. Protect against Cross-Site Request Forgeries (CSRF)

Windows XP DOS Commands And Tricks

Very few of us know some trick of CMD of windows XP i have used many and also known some. So i have created a list of useful Win XP CMD tools that can be used.

Hope it helps you!!!!

ipconfig – Windows IP configuration

Useful for troubleshooting your internet connection. Displays the current IP address of your computer and the DNS server address. If you call your ISP for reporting a bad internet connection, he will probably ask you to run ipconfig.

fc – Free BeyondCompare in XP

FC is an advanced DOS Command that compares two files and displays the differences between them. Though the file comparison results are not as interactive as BeyondCompare or Altova DiffDog, fc is still very useful. You can even set fc to resynchronize the files after finding a mismatch.

type – open text files sans Notepad

Similar to Unix cat command, Type is my favorite DOS command for displaying the contents of a text files without modifying them. When used in combination with more switch, type splits the contents of lengthy text files into multiple pages. Avoid using the type command with binary files or you’ll hear alien PC beeps and see some greek characters on your PC.

ping – Say hello to another computer

Ping network command followed by the web-address or IP address tells you about the health of the connection and whether the other party is responding to your handshake request. Ping tool can also be used to convert the web address to a physical IP address.

tree – visual directory structure

You often need to take prints of your physical directory structure but XP has no simple “visual” commands for printing directory contents. Here, try the Tree DOS command and redirect the output to a text file.

tree > mydirectory.txt

print mydirectory.txt

attrib – make hidden files visible

Attrib lets you change attributes of System files and even hidden files. This is great for troubleshooting Windows XP. Say your XP doesn’t boot ever since you edited that startup boot.ini file (Hidden), use attrib to remove the Hidden attibute and edit the file using EDIT dos command.

assoc – which program will open that .xyz file

The assoc DOS command can be used to either isplay or even modify the file name extension associations. The command assoc .htm will quickly tell you the name of your default web browser (see picture)

move – more flexible than copy-paste

Say you got a lot of XLS and DOC files in you MyDocuments folder and want to move only those XLS files that have their name ending with 2006. In XP Explorer, you have to manually select each file and then cut-paste to another folder. However, the DOS move command make things much simpler. Just type the following at the command prompt:

move *2006.xls c:\2006Reports\

bootcfg

Configures, queries, or changes Boot.ini file settings.

defrag

Locates and consolidates fragmented boot files, data files, and folders on local volumes.

diskpart

Manages disks, partitions, or volumes.

driverquery

Queries for a list of drivers and driver properties.

eventcreate

Enables an administrator to create a custom event in a specified event log.

eventquery

Lists the events and event properties from one or more event logs.

eventtriggers

Displays and configures event triggers on local or remote machines.

fsutil

Manages reparse points, managing sparse files, dismounting a volume, or extending a volume.

getmac

Obtains the media access control (MAC) address and list of network protocols

helpctr

Starts Help and Support Center.

ipseccmd

Configures Internet Protocol Security (IPSec) policies in the directory service, or in a local or remote registry. Ipseccmd is a command-line version of the IP Security Policies Microsoft Management Console (MMC) snap-in.

logman

Manages and schedules performance counter and event trace log collections on local and remote systems.

openfiles

Queries, displays, or disconnects open files.

pagefileconfig

Displays and configures the paging file Virtual Memory settings of a system.

perfmon

Enables you to open a Performance console configured with settings files from Windows NT 4.0 version of Performance Monitor.

prncnfg

Configures or displays configuration information about a printer.

prndrvr

Adds, deletes, and lists printer drivers from local or remote print servers.

prnjobs

Pauses, resumes, cancels, and lists print jobs.

prnmngr

Adds, deletes, and lists printers or printer connections, in addition to setting and displaying the default printer.

prnport

Creates, deletes, and lists standard TCP/IP printer ports, in addition to displaying and changing port configuration.

prnqctl

Prints a test page, pauses or resumes a printer, and clears a printer queue.

relog

Extracts performance counters from performance counter logs into other formats, such as text-TSV (for tab-delimited text), text-CSV (for comma-delimited text), binary-BIN, or SQL.

sc

Retrieves and sets information about services. Tests and debugs service programs.

schtasks

Schedules commands and programs to run periodically or at a specific time. Adds and removes tasks from the schedule, starts and stops tasks on demand, and displays and changes scheduled tasks.

shutdown

Shuts down or restarts a local or remote computer.

systeminfo

Queries the system for basic system configuration information.

taskkill

Ends one or more tasks or processes.

tasklist

Displays a list of applications, services, and the Process ID (PID) currently running on either a local or a remote computer.

tracerpt

Processes event trace logs or real-time data from instrumented event trace providers and allows you to generate trace analysis reports and CSV (comma-delimited) files for the events generated.

typeperf

Writes performance counter data to the command window or to a supported log file format.

WMIC

Eases the use of Windows Management Insturmentation (WMI) and systems managed through WMI.

Exception Processing Message c00000a3 Parameters 75b6bf7c 4 75b6bf7c 75b6bf7c

—————————
Windows – Drive Not Ready
—————————
Exception Processing Message c00000a3 Parameters 75b6bf7c 4 75b6bf7c 75b6bf7c
—————————
Cancel Try Again Continue
—————————

Exception Processing Message c00000a3 Parameters 75b6bf7c 4 75b6bf7c 75b6bf7c

Exception Processing Message c00000a3 Parameters 75b6bf7c 4 75b6bf7c 75b6bf7c

I was getting this message when i inserted my pendrive (memory stick) in my machine, the when i was trying to remove the pen drive using the “Safely remove drive”, it was giving me some error so removed it manually without stopping it and after that when i restarted my machine it gave me this error.

There were many solutions that i found on the net using GOOGLE but only one worked for me.

Solution 1: Go to Control Panel -> System -> Hardware -> Device Manager -> Disable Floppy Disk
And your done the message will not pop any more

If you need to know more about the error message or the pop up then you can click on
1. Start -> Run -> and type eventvwr.msc
2. In that click on System and there would be a list of the pops ups or errors information.

MCA SEM 1, 2, 3, 4 , 5 and 6 Examination Dates

PROGRAMME OF THE MASTER’S DEGREE IN COMPUTER APPLICATIONS (M.C.A.)

(SEM 1, 2, 3, 4 , 5 and 6 ) EXAMINATION DATES

Hello guys i have attached 5 PDF files for repective Semister, please download it and start preparing for the exams.

Very less time and so much to do.

All the best and please share anything to everyone.

Lets grow as one and share…….

Open a new window using Javascript

JavaScript : window.open

There are few times we would like top open a pop window to show some data or also be user interactive bu showing a good form in a pop window, window.open can be used for this pupose

We can directly write window.open(url) in the anchor tag, but let be more innovative and give more flexibility to our code, so we write a wrapper function around it.

The below example provides a broader view:

/* Function : New Window
|
| Description : This parameter defines how you want the new window to appear.
| This parameter is ignored if an existing window is to be reused.
| The contents of this parameter is a comma separated list of sub-parameters.
|
| Arguments :-
|
| left : yes or no
| specifies the recommended distance from the left of the
| screen to the left of the new window.
| top : yes or no
| specifies the recommended distance from the top of the
| screen to the top of the new window.
| width : yes or no
| specifies the width of the content area for the new window
| (including any scrollbars etc). |
| Note. IE7 will not allow you to set width below 250px.
| height : specifies the height of the content area for the new window
| (including any scrollbars etc).
| Note. IE7 will not allow you to set height below 150px.
| menubar : can be set to yes or no to indicate whether or not the new window
| should display a menubar.
| toolbar : can be set to yes or no to indicate whether or not the new window
| should display a toolbar.
| location : can be set to yes or no to indicate whether or not the new window
| should display the location |
| status : can be set to yes or no to indicate whether or not the new window
| should display the status bar.
| resizable : can be set to yes or no to indicate whether or not the new window can be resized.
| scrollbars : can be set to yes or no to indicate whether or not the new window
| should display scrollbars if required.
|
| Optional :-
|
| replace : This parameter defines how an existing window is to be reused.
| If true then the new page replaces the current page in the browser history.
| If false the new page is added to the browser history.
|
| Example: window.open(”URL”,”width=350, height=400, toolbar=no, resize=yes, scrollbars=yes, status=no, menubar=yes”);
|
| @access public
| @param string
| @param int
| @param int
| @return void
*/
function new_window(url,swidth,sheight)
{

var width = (swidth) ? swidth: 600;
var height = (sheight) ? sheight: 500;

if(url != “”)
window.open(url,”new_window”,”toolbar=no, width=”+width+”, height=”+height+”, status=no,scrollbars=yes, resize=yes, menubar=no”);
}

IE6+ window.location doesn’t work (redirect to a page)

In IE6+ window.location doesn’t work so a turn around would be changing the JS script or working with the environment and calling the JS script in a different manner.

Here how it works:-
1. First check the browser and its version.
2. Call the JS script.

Example:

var url=’http://austinnoronha.wordpress.com’;
var browser_type=navigator.appName
var browser_version=parseInt(navigator.appVersion)
if (browser_type==”Netscape”&&browser_version>=4)
{
//if NS 4+
window.location.replace(url);
}
else if (browser_type==”Microsoft Internet Explorer”&&browser_version>=4)
{
//if IE 4+
window.location.replace(url);
}
else
{
//Default goto page (NOT NS 4+ and NOT IE 4+)
window.location=url;
}

Indian Premier League (IPL) 2009 Schedule

IPL 2009, the major cricket fights in game of cricket will be held from 18th April 2009 to 1st June 2009. The major matches between the great teams will be held at Banglore(Bangaluru) and Kolkata. The final and the semi final match will be held at Mumbai.

IPL Cricket Teams

IPL Cricket Teams

The Highest paid players are England’s Kevin Pietersen and Andrew Flintoff and the prize id US$ 1.55 million and they both were bought by Banglore Royal Challengers and Chennai Super Kings, but many other star cricketers not sold yet.

IPL 2008 Team Ratings:-

IPL Teams Ratings

IPL Teams Ratings

Match Schedule:-

1. Bangalore Royal Challengers Vs Kolkata Knight Riders
Date : April 18, 2009
Time: 8:00 PM
Ground: Bangalore

2. Kings XI Punjab Vs Chennai Super Kings
Date : April 19, 2009
Time: 5:00 PM
Ground: Mohali

3. Delhi Daredevils Vs Rajasthan Royals
Date : April 19, 2009
Time: 8:30 PM
Ground: Delhi

4. Kolkata Knight Riders Vs Deccan Chargers
Date : April 20, 2009
Time: 4:00 PM
Ground: Kolkata

5. Mumbai Indians Vs Bangalore Royal Challengers
Date : April 20, 2009
Time: 8:00 PM
Ground: Mumbai

6. Rajasthan Royals Vs Kings XI Punjab
Date : April 21, 2009
Time: 8:00 PM
Ground: Jaipur

7. Deccan Chargers Vs Delhi Daredevils
Date : April 22, 2009
Time: 8:00 PM
Ground: Hyderabad

8. Chennai Super Kings Vs Mumbai Indians
Date : April 23, 2009
Time: 8:00 PM
Ground: Chennai

9. Deccan Chargers Vs Rajasthan Royals
Date : April 24, 2009
Time: 8:00 PM
Ground: Hyderabad

10. Kings XI Punjab Vs Mumbai Indians
Date : April 25, 2009
Time: 8:00 PM
Ground: Mohali

11. Bangalore Royal Challengers Vs Rajasthan Royals
Date : April 26, 2009
Time: 8:00 PM
Ground: Bangalore

12. Chennai Super Kings Vs Kolkata Knight Riders
Date : April 26, 2009
Time: 4:00 PM
Ground: Chennai

13. Mumbai Indians Vs Deccan Chargers
Date : April 27, 2009
Time: 8:00 PM
Ground: Mumbai

14. Kings XI Punjab Vs Delhi Daredevils
Date : April 27, 2009
Time: 4:00 PM
Ground: Mohali

15. Bangalore Royal Challengers Vs Chennai Super Kings
Date : April 28, 2009
Time: 8:00 PM
Ground: Bangalore

16. Kolkata Knight Riders Vs Mumbai Indians
Date : April 29, 2009
Time: 8:00 PM
Ground: Kolkata

17. Delhi Daredevils Vs Bangalore Royal Challengers .
Date : April 30, 2009
Time: 8:00 PM
Ground: Delhi

18. Deccan Chargers Vs Kings XI Punjab
Date : May 1, 2009
Time: 8:00 PM
Ground: Hyderabad

19. Rajasthan Royals Vs Kolkata Knight Riders
Date : May 1, 2009
Time: 4:00 PM
Ground: Jaipur

20. Chennai Super Kings Vs Delhi Daredevils
Date : May 2, 2009
Time: 8:00 PM
Ground: Chennai

21. Bangalore Royal Challengers Vs Deccan Chargers
Date : May 3, 2009
Time: 4:00 PM
Ground: Bangalore

22. Kings XI Punjab Vs Kolkata Knight Riders
Date : May 3, 2009
Time: 8:00 PM
Ground: Mohali

23. Mumbai Indians Vs Delhi Daredevils
Date : May 4, 2009
Time:4:00 PM
Ground: Mumbai

24. Rajasthan Royals Vs Chennai Super Kings
Date : May 4, 2009
Time: 8:00 PM
Ground: Jaipur

25. Bangalore Royal Challengers Vs Kings XI Punjab
Date : May 5, 2009
Time:8:00 PM
Ground: Bangalore

26. Chennai Super Kings Vs Deccan Chargers
Date : May 6, 2009
Time: 8:00 PM
Ground: Chennai

27. Mumbai Indians Vs Rajasthan Royals
Date : May 7, 2009
Time: 8:00 PM
Ground: Mumbai

28. Delhi Daredevils Vs Chennai Super Kings
Date : May 8, 2009
Time: 4:00 PM
Ground: Delhi

29. Kolkata Knight Riders Vs Bangalore Royal Challengers
Date : May 8, 2009
Time: 8:00 PM
Ground: Kolkata

30. Rajasthan Royals Vs Deccan Chargers
Date : May 9, 2009
Time:8:00 PM
Ground: Jaipur

31. Chennai Super Kings Vs Kings XI Punjab
Date : May 10, 2009
Time: 8:00 PM
Ground: Chennai

32. Deccan Chargers Vs Kolkata Knight Riders
Date : May 11, 2009
Time: 4:00 PM
Ground: Hyderabad

33. Rajasthan Royals vs Delhi Daredevils
Date : May 11, 2009
Time: 8:00 PM
Ground: Jaipur

34. Kings XI Punjab Vs Bangalore Royal Challengers
Date : May 12, 2009
Time: 8:00 PM
Ground: Mohali

35. Kolkata Knight Riders Vs Delhi Daredevils
Date : May 13, 2009
Time: 8:00 PM
Ground: Kolkata

36. Mumbai Indians Vs Chennai Super Kings
Date : May 14, 2009
Time: 8:00 PM
Ground: Mumbai

37. Delhi Daredevils Vs Deccan Chargers
Date : May 15, 2009
Time: 8:00 PM
Ground: Delhi

38. Mumbai Indians Vs Kolkata Knight Riders
Date : May 16, 2009
Time: 8:00 PM
Ground: Mumbai

39. Delhi Daredevils Vs Kings XI Punjab
Date : May 17, 2009
Time: 8:00 PM
Ground: Delhi

40. Rajasthan Royals Vs Bangalore Royal Challengers
Date : May 17, 2009
Time: 4:00 PM
Ground: Jaipur

41. Deccan Chargers Vs Mumbai Indians
Date : May 18, 2009
Time: 8:00 PM
Ground: Hyderabad

42. Kolkata Knight Riders Vs Chennai Super Kings
Date : May 18, 2009
Time: 4:00 PM
Ground: Kolkata

43. Bangalore Royal Challengers Vs Delhi Daredevils
Date : May 19, 2009
Time: 8:00 PM
Ground: Bangalore

44. Kolkata Knight Riders Vs Rajasthan Royals
Date : May 20, 2009
Time: 8:00 PM
Ground: Kolkata

45. Mumbai Indians Vs Kings XI Punjab
Date : May 21, 2009
Time: 4:00 PM
Ground: Mumbai

46. Chennai Super Kings Vs Bangalore Royal Challengers
Date : May 21, 2009
Time: 8:00 PM
Ground: Chennai

47. Delhi Daredevils Vs Kolkata Knight Riders
Date : May 22, 2009
Time: 8:00 PM
Ground: Delhi

48. Kings XI Punjab Vs Deccan Chargers
Date : May 23, 2009
Time: 8:00 PM
Ground: Mohali

49. Delhi Daredevils Vs Mumbai Indians
Date : May 24, 2009
Time: 8:00 PM
Ground: Delhi

50. Chennai Super Kings Vs Rajasthan Royals
Date : May 24, 2009
Time: 4:00 PM
Ground: Chennai

51. Deccan Chargers Vs Bangalore Royal Challengers
Date : May 25, 2009
Time: 4:00 PM
Ground: Hyderabad

52. Kolkata Knight Riders Vs Kings XI Punjab
Date : May 25, 2009
Time: 8:00 PM
Ground: Kolkata

53. Rajasthan Royals Vs Mumbai Indians
Date : May 26, 2009
Time: 8:00 PM
Ground: Jaipur

54. Deccan Chargers Vs Chennai Super Kings
Date : May 27, 2009
Time: 8:00 PM
Ground: Hyderabad

55. Bangalore Royal Challengers Vs Mumbai Indians
Date : May 28, 2009
Time: 4:00 PM
Ground: Bangalore

56. Kings XI Punjab Vs Rajasthan Royals
Date : May 28, 2009
Time: 8:00 PM
Ground: Mohali

May 29 is the day For Rest

First semi-final
Date : May 30, 2009
Time: 8:00 PM
Ground: Mumbai

Second semi-final
Date : May 31, 2009
Time: 8:00 PM
Ground: Mumbai

Final
Date : June 1, 2009
Time: 8:00 PM
Ground: Mumbai

ICC 20-20 World Cup 2009

ICC World Twenty20 2009 Time Table and Team Fixtures.

In the upcoming season of ICC T20 World Cup 2009, 12 teams are going to participates for the tournament and all the teams are divides in the four groups as given Below :

  • Group A : India, Bangladesh, Ireland
  • Group B : Pakistan, England, Netherlands
  • Group C : Australia, Sri Lanka, West Indies
  • Group D : South Africa, New Zealand, Scotland

The ICC T20 World Cup 2009 will be starting from Friday, June 5, 2009 and the first match is between the team England and Netherlands, which are from Group B at London and the same match is Day night.

The same tournament ends on Sunday, June 21, 2009 with the Final match, which is held at London.

Match Schedule , Time and Venue

Date June 2009 Time (GMT) Match Details Venue
Fri 05 16:30 England v Netherlands, 1st Match, Group B, ICC World Twenty20, 2009 London (D/N)
Sat 06 09:00 New Zealand v Scotland, 2nd Match, Group D, ICC World Twenty20, 2009 London
Sat 06 12:30 Australia v West Indies, 3rd Match, Group C, ICC World Twenty20, 2009 London
Sat 06 16:30 India v Bangladesh, 4th Match, Group A, ICC World Twenty20, 2009 Nottingham (D/N)
Sun 07 12:30 South Africa v Scotland, 5th Match, Group D, ICC World Twenty20, 2009 London
Sun 07 16:30 England v Pakistan, 6th Match, Group B, ICC World Twenty20, 2009 London (D/N)
Mon 08 12:30 Bangladesh v Ireland, 7th Match, Group A, ICC World Twenty20, 2009 Nottingham
Mon 08 16:30 Australia v Sri Lanka, 8th Match, Group C, ICC World Twenty20, 2009 Nottingham (D/N)
Tue 09 12:30 Pakistan v Netherlands, 9th Match, Group B, ICC World Twenty20, 2009 London
Tue 09 16:30 New Zealand v South Africa, 10th Match, Group D, ICC World Twenty20, 2009 London (D/N)
Wed 10 12:30 Sri Lanka v West Indies, 11th Match, Group C, ICC World Twenty20, 2009 Nottingham
Wed 10 16:30 India v Ireland, 12th Match, Group A, ICC World Twenty20, 2009 Nottingham (D/N)
Thu 11 12:30 D1 v A2, 13th Match, Group F, ICC World Twenty20, 2009 Nottingham
Thu 11 16:30 B2 v D2, 14th Match, Group E, ICC World Twenty20, 2009 Nottingham (D/N)
Fri 12 12:30 B1 v C2, 15th Match, Group F, ICC World Twenty20, 2009 London
Fri 12 16:30 A1 v C1, 16th Match, Group E, ICC World Twenty20, 2009 London (D/N)
Sat 13 12:30 C1 v D2, 17th Match, Group E, ICC World Twenty20, 2009 London
Sat 13 16:30 D1 v B1, 18th Match, Group F, ICC World Twenty20, 2009 London (D/N)
Sun 14 12:30 A2 v C2, 19th Match, Group F, ICC World Twenty20, 2009 London
Sun 14 16:30 A1 v B2, 20th Match, Group E, ICC World Twenty20, 2009 London (D/N)
Mon 15 12:30 B2 v C1, 21st Match, Group E, ICC World Twenty20, 2009 London
Mon 15 16:30 B1 v A2, 22nd Match, Group F, ICC World Twenty20, 2009 London (D/N)
Tue 16 12:30 D1 v C2, 23rd Match, Group F, ICC World Twenty20, 2009 Nottingham
Tue 16 16:30 D2 v A1, 24th Match, Group E, ICC World Twenty20, 2009 Nottingham (D/N)
Thu 18 16:30 1st Semi-Final, ICC World Twenty20, 2009 Nottingham
Fri 19 16:30 2nd Semi-Final, ICC World Twenty20, 2009 London (D/N)
Sun 21 14:00 Final, ICC World Twenty20, 2009 London

So lets PLAY BALL!!!