|
Free
PHP Tutorials
|
![]() |
home |
Stay
at Home and Learn
|
|||||
chr( ) |
||||||
|
Converts an ASCII value to its equivalent character. For example, the ASCII value 64 is the @ symbol on a UK keyboard. If you want to disguise your email address, you could do it like this: $email_address = "me" . chr(64) . "me.com"; print $email_address;
|