Added lot of junk laying around on harvie.cz
[mirrors/Programs.git] / php / skripty / ascii.php
diff --git a/php/skripty/ascii.php b/php/skripty/ascii.php
new file mode 100644 (file)
index 0000000..16bff66
--- /dev/null
@@ -0,0 +1,19 @@
+/*\r
+Generates Ascii table (By Harvie 2oo6)\r
+*/\r
+\r
+<?php\r
+\r
+echo ("Ascii table (By Harvie 2oo6)\n\n");\r
+\r
+\r
+$chr_in = 0;\r
+\r
+while ( $chr_in < 256 ) {\r
+\r
+echo ($chr_in . " - " . chr ( $chr_in ) . "\n");\r
+$chr_in++;\r
+\r
+}\r
+\r
+?>\r
This page took 0.132274 seconds and 4 git commands to generate.