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
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
You can define the names like this.
define ("Bill", "William");
and you can use these name like this.
echo Bill;