GIT.Harvie.CZ
/
mirrors
/
Programs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
added tips to lamer.bash help
[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
1.882062 seconds
and
4
git commands to generate.