<? function ascii(){ for ($i = 0; $i < 256; ++$i) { static $x; $x++; echo "chr($x) will output ".(chr($x))."<br>\n"; } } ascii(); ?>