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,101
  • 20
  • 56
  • 70
user1518659
  • 2,168
  • 8
  • 28
  • 39

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
  • 159
  • 1
  • 10
  • 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