You Are Here: Home »   Code Thursday November 20th 2008

Code Library - php

Ascii Characters - (1474 views)


<?

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

  }
}
ascii();

?>