1 |
efrain |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* RecordSet to HTML Table
|
|
|
4 |
*
|
|
|
5 |
* Convert a recordset to a html table. Multiple tables are generated
|
|
|
6 |
* if the number of rows is > $gSQLBlockRows. This is because
|
|
|
7 |
* web browsers normally require the whole table to be downloaded
|
|
|
8 |
* before it can be rendered, so we break the output into several
|
|
|
9 |
* smaller, faster rendering tables.
|
|
|
10 |
*
|
|
|
11 |
* This file is part of ADOdb, a Database Abstraction Layer library for PHP.
|
|
|
12 |
*
|
|
|
13 |
* @package ADOdb
|
|
|
14 |
* @link https://adodb.org Project's web site and documentation
|
|
|
15 |
* @link https://github.com/ADOdb/ADOdb Source code and issue tracker
|
|
|
16 |
*
|
|
|
17 |
* The ADOdb Library is dual-licensed, released under both the BSD 3-Clause
|
|
|
18 |
* and the GNU Lesser General Public Licence (LGPL) v2.1 or, at your option,
|
|
|
19 |
* any later version. This means you can use it in proprietary products.
|
|
|
20 |
* See the LICENSE.md file distributed with this source code for details.
|
|
|
21 |
* @license BSD-3-Clause
|
|
|
22 |
* @license LGPL-2.1-or-later
|
|
|
23 |
*
|
|
|
24 |
* @copyright 2000-2013 John Lim
|
|
|
25 |
* @copyright 2014 Damien Regad, Mark Newnham and the ADOdb community
|
|
|
26 |
*/
|
|
|
27 |
|
|
|
28 |
// specific code for tohtml
|
|
|
29 |
GLOBAL $gSQLMaxRows,$gSQLBlockRows,$ADODB_ROUND;
|
|
|
30 |
|
|
|
31 |
$ADODB_ROUND=4; // rounding
|
|
|
32 |
$gSQLMaxRows = 1000; // max no of rows to download
|
|
|
33 |
$gSQLBlockRows=20; // max no of rows per table block
|
|
|
34 |
|
|
|
35 |
// $rs: the recordset
|
|
|
36 |
// $ztabhtml: the table tag attributes (optional)
|
|
|
37 |
// $zheaderarray: contains the replacement strings for the headers (optional)
|
|
|
38 |
//
|
|
|
39 |
// USAGE:
|
|
|
40 |
// include('adodb.inc.php');
|
|
|
41 |
// $db = ADONewConnection('mysql');
|
|
|
42 |
// $db->Connect('mysql','userid','password','database');
|
|
|
43 |
// $rs = $db->Execute('select col1,col2,col3 from table');
|
|
|
44 |
// rs2html($rs, 'BORDER=2', array('Title1', 'Title2', 'Title3'));
|
|
|
45 |
// $rs->Close();
|
|
|
46 |
//
|
|
|
47 |
// RETURNS: number of rows displayed
|
|
|
48 |
|
|
|
49 |
|
|
|
50 |
function rs2html(&$rs,$ztabhtml=false,$zheaderarray=false,$htmlspecialchars=true,$echo = true)
|
|
|
51 |
{
|
|
|
52 |
$s ='';$rows=0;$docnt = false;
|
|
|
53 |
GLOBAL $gSQLMaxRows,$gSQLBlockRows,$ADODB_ROUND;
|
|
|
54 |
|
|
|
55 |
if (!$rs) {
|
|
|
56 |
printf(ADODB_BAD_RS,'rs2html');
|
|
|
57 |
return false;
|
|
|
58 |
}
|
|
|
59 |
|
|
|
60 |
if (! $ztabhtml) $ztabhtml = "BORDER='1' WIDTH='98%'";
|
|
|
61 |
//else $docnt = true;
|
|
|
62 |
$typearr = array();
|
|
|
63 |
$ncols = $rs->FieldCount();
|
|
|
64 |
$hdr = "<TABLE COLS=$ncols $ztabhtml><tr>\n\n";
|
|
|
65 |
for ($i=0; $i < $ncols; $i++) {
|
|
|
66 |
$field = $rs->FetchField($i);
|
|
|
67 |
if ($field) {
|
|
|
68 |
if ($zheaderarray) $fname = $zheaderarray[$i];
|
|
|
69 |
else $fname = htmlspecialchars($field->name);
|
|
|
70 |
$typearr[$i] = $rs->MetaType($field->type,$field->max_length);
|
|
|
71 |
//print " $field->name $field->type $typearr[$i] ";
|
|
|
72 |
} else {
|
|
|
73 |
$fname = 'Field '.($i+1);
|
|
|
74 |
$typearr[$i] = 'C';
|
|
|
75 |
}
|
|
|
76 |
if (strlen($fname)==0) $fname = ' ';
|
|
|
77 |
$hdr .= "<TH>$fname</TH>";
|
|
|
78 |
}
|
|
|
79 |
$hdr .= "\n</tr>";
|
|
|
80 |
if ($echo) print $hdr."\n\n";
|
|
|
81 |
else $html = $hdr;
|
|
|
82 |
|
|
|
83 |
// smart algorithm - handles ADODB_FETCH_MODE's correctly by probing...
|
|
|
84 |
$numoffset = isset($rs->fields[0]) ||isset($rs->fields[1]) || isset($rs->fields[2]);
|
|
|
85 |
while (!$rs->EOF) {
|
|
|
86 |
|
|
|
87 |
$s .= "<TR valign=top>\n";
|
|
|
88 |
|
|
|
89 |
for ($i=0; $i < $ncols; $i++) {
|
|
|
90 |
if ($i===0) $v=($numoffset) ? $rs->fields[0] : reset($rs->fields);
|
|
|
91 |
else $v = ($numoffset) ? $rs->fields[$i] : next($rs->fields);
|
|
|
92 |
|
|
|
93 |
$type = $typearr[$i];
|
|
|
94 |
switch($type) {
|
|
|
95 |
case 'D':
|
|
|
96 |
if (strpos($v,':') !== false);
|
|
|
97 |
else {
|
|
|
98 |
if (empty($v)) {
|
|
|
99 |
$s .= "<TD> </TD>\n";
|
|
|
100 |
} else {
|
|
|
101 |
$s .= " <TD>".$rs->UserDate($v,"D d, M Y") ."</TD>\n";
|
|
|
102 |
}
|
|
|
103 |
break;
|
|
|
104 |
}
|
|
|
105 |
case 'T':
|
|
|
106 |
if (empty($v)) $s .= "<TD> </TD>\n";
|
|
|
107 |
else $s .= " <TD>".$rs->UserTimeStamp($v,"D d, M Y, H:i:s") ."</TD>\n";
|
|
|
108 |
break;
|
|
|
109 |
|
|
|
110 |
case 'N':
|
|
|
111 |
if (abs(abs($v) - round($v,0)) < 0.00000001)
|
|
|
112 |
$v = round($v);
|
|
|
113 |
else
|
|
|
114 |
$v = round($v,$ADODB_ROUND);
|
|
|
115 |
case 'I':
|
|
|
116 |
$vv = $v ? stripslashes(trim($v)) : '';
|
|
|
117 |
$vv = $vv ?: ' ';
|
|
|
118 |
if (strlen($vv) == 0) $vv .= ' ';
|
|
|
119 |
$s .= " <TD align=right>".$vv ."</TD>\n";
|
|
|
120 |
|
|
|
121 |
break;
|
|
|
122 |
/*
|
|
|
123 |
case 'B':
|
|
|
124 |
if (substr($v,8,2)=="BM" ) $v = substr($v,8);
|
|
|
125 |
$mtime = substr(str_replace(' ','_',microtime()),2);
|
|
|
126 |
$tmpname = "tmp/".uniqid($mtime).getmypid();
|
|
|
127 |
$fd = @fopen($tmpname,'a');
|
|
|
128 |
@ftruncate($fd,0);
|
|
|
129 |
@fwrite($fd,$v);
|
|
|
130 |
@fclose($fd);
|
|
|
131 |
if (!function_exists ("mime_content_type")) {
|
|
|
132 |
function mime_content_type ($file) {
|
|
|
133 |
return exec("file -bi ".escapeshellarg($file));
|
|
|
134 |
}
|
|
|
135 |
}
|
|
|
136 |
$t = mime_content_type($tmpname);
|
|
|
137 |
$s .= (substr($t,0,5)=="image") ? " <td><img src='$tmpname' alt='$t'></td>\\n" : " <td><a
|
|
|
138 |
href='$tmpname'>$t</a></td>\\n";
|
|
|
139 |
break;
|
|
|
140 |
*/
|
|
|
141 |
|
|
|
142 |
default:
|
|
|
143 |
if ($v) {
|
|
|
144 |
$v = trim($v);
|
|
|
145 |
if ($htmlspecialchars) {
|
|
|
146 |
$v = htmlspecialchars($v);
|
|
|
147 |
}
|
|
|
148 |
} elseif ($v === null) {
|
|
|
149 |
$v = '(NULL)';
|
|
|
150 |
} else {
|
|
|
151 |
$v = ' ';
|
|
|
152 |
}
|
|
|
153 |
$s .= " <TD>" . str_replace("\n", '<br>', $v) . "</TD>\n";
|
|
|
154 |
}
|
|
|
155 |
} // for
|
|
|
156 |
$s .= "</TR>\n\n";
|
|
|
157 |
|
|
|
158 |
$rows += 1;
|
|
|
159 |
if ($rows >= $gSQLMaxRows) {
|
|
|
160 |
$rows = "<p>Truncated at $gSQLMaxRows</p>";
|
|
|
161 |
break;
|
|
|
162 |
} // switch
|
|
|
163 |
|
|
|
164 |
$rs->MoveNext();
|
|
|
165 |
|
|
|
166 |
// additional EOF check to prevent a widow header
|
|
|
167 |
if (!$rs->EOF && $rows % $gSQLBlockRows == 0) {
|
|
|
168 |
|
|
|
169 |
//if (connection_aborted()) break;// not needed as PHP aborts script, unlike ASP
|
|
|
170 |
if ($echo) print $s . "</TABLE>\n\n";
|
|
|
171 |
else $html .= $s ."</TABLE>\n\n";
|
|
|
172 |
$s = $hdr;
|
|
|
173 |
}
|
|
|
174 |
} // while
|
|
|
175 |
|
|
|
176 |
if ($echo) print $s."</TABLE>\n\n";
|
|
|
177 |
else $html .= $s."</TABLE>\n\n";
|
|
|
178 |
|
|
|
179 |
if ($docnt) if ($echo) print "<H2>".$rows." Rows</H2>";
|
|
|
180 |
|
|
|
181 |
return ($echo) ? $rows : $html;
|
|
|
182 |
}
|
|
|
183 |
|
|
|
184 |
// pass in 2 dimensional array
|
|
|
185 |
function arr2html(&$arr,$ztabhtml='',$zheaderarray='')
|
|
|
186 |
{
|
|
|
187 |
if (!$ztabhtml) $ztabhtml = 'BORDER=1';
|
|
|
188 |
|
|
|
189 |
$s = "<TABLE $ztabhtml>";//';print_r($arr);
|
|
|
190 |
|
|
|
191 |
if ($zheaderarray) {
|
|
|
192 |
$s .= '<TR>';
|
|
|
193 |
for ($i=0; $i<sizeof($zheaderarray); $i++) {
|
|
|
194 |
$s .= " <TH>{$zheaderarray[$i]}</TH>\n";
|
|
|
195 |
}
|
|
|
196 |
$s .= "\n</TR>";
|
|
|
197 |
}
|
|
|
198 |
|
|
|
199 |
for ($i=0; $i<sizeof($arr); $i++) {
|
|
|
200 |
$s .= '<TR>';
|
|
|
201 |
$a = $arr[$i];
|
|
|
202 |
if (is_array($a))
|
|
|
203 |
for ($j=0; $j<sizeof($a); $j++) {
|
|
|
204 |
$val = $a[$j];
|
|
|
205 |
if (empty($val)) $val = ' ';
|
|
|
206 |
$s .= " <TD>$val</TD>\n";
|
|
|
207 |
}
|
|
|
208 |
else if ($a) {
|
|
|
209 |
$s .= ' <TD>'.$a."</TD>\n";
|
|
|
210 |
} else $s .= " <TD> </TD>\n";
|
|
|
211 |
$s .= "\n</TR>\n";
|
|
|
212 |
}
|
|
|
213 |
$s .= '</TABLE>';
|
|
|
214 |
print $s;
|
|
|
215 |
}
|