-
Notifications
You must be signed in to change notification settings - Fork 35
/
index.php
25 lines (23 loc) · 1.05 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
include "setting.php";
echo <<< EOF
<html>
<image src="simitlogo.jpg"><br>
Developer: Ng Jey Ruey ([email protected])<br>
Project Leader: KS Tan ([email protected])<br>
Organization: <a href='http://www.simit.com.my'>Sim IT Sdn Bhd</a><br>
<h1>PHP Jasper XML ($version) Example</h1><br>
<p><B>Example:</B></p>
<ul>
<li><a href='sample1.php' target='_blank'>Sample 1 <a> (Standard Parent and Child Report)</li>
<li><a href='sample2.php' target='_blank'>Sample 2</a> Charts (pie chart not supported)</li>
<li><a href='sample3.php' target='_blank'>Sample 3</a> Sub Reports</li>
<li><a href='sample4.php' target='_blank'>Sample 4</a>Export as Excel</li>
<li><a href='sample5.php?id=1' target='_blank'>Sample 5</a> (Use TCPDF, with writeHTML output) (markup=html)</li>
<li><a href='sample6.php' target='_blank'>Sample 6</a> Grouping, hide repeated value (UOM), with asian fonts</li>
<li><a href='sample7.php' target='_blank'>Sample 7</a> Complex Layout</li>
</ul>
<br/>* Thanks rachman sponsored for new function!
</html>
EOF;
?>