Added lot of junk laying around on harvie.cz
[mirrors/Programs.git] / php / skripty / ascii.php
1 /*
2 Generates Ascii table (By Harvie 2oo6)
3 */
4
5 <?php
6
7 echo ("Ascii table (By Harvie 2oo6)\n\n");
8
9
10 $chr_in = 0;
11
12 while ( $chr_in < 256 ) {
13
14 echo ($chr_in . " - " . chr ( $chr_in ) . "\n");
15 $chr_in++;
16
17 }
18
19 ?>
This page took 0.23588 seconds and 4 git commands to generate.