repo.or.cz
/
h2N7SspZmY.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
maio
[h2N7SspZmY.git]
/
lib
/
plugins
/
chart2
/
include_test.php
blob
c182d14275bb45a34afb76870b62595e92abb02f
1
<
?php
2
$ret
=
'<chart><chart_data><row><null/>
3
<string>2001</string>
4
<string>2002</string>
5
<string>2003</string>
6
<string>2004</string>
7
</row>
8
<row>
9
<string>Data</string>'
;
10
11
// Creation of random values here.
12
for
(
$cnt
=
0
;
$cnt
<
4
;
$cnt
++
){
13
$val
=
rand
(
0
,
1000
);
14
$ret
.=
'<number>'
.
$val
.
'</number>
\n
'
;
15
}
16
17
$ret
.=
'</row></chart_data></chart>'
;
18
echo
$ret
;
19
?
>