how do I convert and integer value to its ASCII correspondent?
in C I would go something like:
int i = 90;
char c;
c = i + '0'; // now c would be 'Z'
in PHP I'm simply clueless since there's no (char) type...
____________________________
. Christian Dechery (lemming)
. http://www.tanamesa.com.br
. Gaita-L Owner / Web Developer
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]