0

Can anyone suggest me if there is any dictionary available that will list the set of short names of common names which I need to use in my PHP code.

For ex.

Bill = William
Dick = Ricard 
AstroCB
  • 12,337
  • 20
  • 57
  • 73
user1518659
  • 2,198
  • 9
  • 29
  • 40

1 Answers1

-1

You can define the names like this.

define ("Bill", "William");

and you can use these name like this.

echo Bill;
Bhoopesh Pathak
  • 179
  • 1
  • 11
  • Think you didn't get my question and I know how to use these. I am just looking for the Dictionary which lists the set of common names and their corresponding short names. – user1518659 Sep 25 '12 at 12:22