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