WMPRO, WMMINI FW >= 1.0 WMMEGA FW >= 2.0
Return the character for an ASCII code
$code: ASCII code number (0-255)
A one-character string containing the ASCII character referenced by code
<? $a=chr(65); print($a); // result is 'A' which is the ASCII character number 65 ?>