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
/
stredni-php
/
pocitadlo.php
1
<
?php
2
3
$fp
=
FOpen
(
"pocitadlo.txt"
,
"r"
);
4
$pocet
=
FRead
(
$fp
,
90
);
5
FClose
(
$fp
);
6
7
$pocet
= (
$pocet
+
1
);
8
9
$fp
=
FOpen
(
"pocitadlo.txt"
,
"w"
);
10
FWrite
(
$fp
,
$pocet
);
11
FClose
(
$fp
);
12
13
echo
(
"Navstev: "
.
$pocet
);
14
15
?
>
This page took
1.108896 seconds
and
4
git commands to generate.