3 V4.93 10 Oct 2006 (c) 2000-2012 John Lim (jlim#natsoft.com). All rights reserved.
4 Released under both BSD license and Lesser GPL library license.
5 Whenever there is any discrepancy between the two licenses,
6 the BSD license will take precedence.
8 Some pretty-printing by Chris Oxenreider <oxenreid@state.net>
11 // specific code for tohtml
12 GLOBAL $gSQLMaxRows,$gSQLBlockRows,$ADODB_ROUND;
14 $ADODB_ROUND=4; // rounding
15 $gSQLMaxRows = 1000; // max no of rows to download
16 $gSQLBlockRows=20; // max no of rows per table block
18 // RecordSet to HTML Table
19 //------------------------------------------------------------
20 // Convert a recordset to a html table. Multiple tables are generated
21 // if the number of rows is > $gSQLBlockRows. This is because
22 // web browsers normally require the whole table to be downloaded
23 // before it can be rendered, so we break the output into several
24 // smaller faster rendering tables.
27 // $ztabhtml: the table tag attributes (optional)
28 // $zheaderarray: contains the replacement strings for the headers (optional)
31 // include('adodb.inc.php');
32 // $db = ADONewConnection('mysql');
33 // $db->Connect('mysql','userid','password','database');
34 // $rs = $db->Execute('select col1,col2,col3 from table');
35 // rs2html($rs, 'BORDER=2', array('Title1', 'Title2', 'Title3'));
38 // RETURNS: number of rows displayed
41 function rs2html(&$rs,$ztabhtml=false,$zheaderarray=false,$htmlspecialchars=true,$echo = true)
43 $s ='';$rows=0;$docnt = false;
44 GLOBAL $gSQLMaxRows,$gSQLBlockRows,$ADODB_ROUND;
47 printf(ADODB_BAD_RS
,'rs2html');
51 if (! $ztabhtml) $ztabhtml = "BORDER='1' WIDTH='98%'";
54 $ncols = $rs->FieldCount();
55 $hdr = "<TABLE COLS=$ncols $ztabhtml><tr>\n\n";
56 for ($i=0; $i < $ncols; $i++
) {
57 $field = $rs->FetchField($i);
59 if ($zheaderarray) $fname = $zheaderarray[$i];
60 else $fname = htmlspecialchars($field->name
);
61 $typearr[$i] = $rs->MetaType($field->type
,$field->max_length
);
62 //print " $field->name $field->type $typearr[$i] ";
64 $fname = 'Field '.($i+
1);
67 if (strlen($fname)==0) $fname = ' ';
68 $hdr .= "<TH>$fname</TH>";
71 if ($echo) print $hdr."\n\n";
74 // smart algorithm - handles ADODB_FETCH_MODE's correctly by probing...
75 $numoffset = isset($rs->fields
[0]) ||
isset($rs->fields
[1]) ||
isset($rs->fields
[2]);
78 $s .= "<TR valign=top>\n";
80 for ($i=0; $i < $ncols; $i++
) {
81 if ($i===0) $v=($numoffset) ?
$rs->fields
[0] : reset($rs->fields
);
82 else $v = ($numoffset) ?
$rs->fields
[$i] : next($rs->fields
);
87 if (strpos($v,':') !== false);
90 $s .= "<TD> </TD>\n";
92 $s .= " <TD>".$rs->UserDate($v,"D d, M Y") ."</TD>\n";
97 if (empty($v)) $s .= "<TD> </TD>\n";
98 else $s .= " <TD>".$rs->UserTimeStamp($v,"D d, M Y, H:i:s") ."</TD>\n";
102 if (abs(abs($v) - round($v,0)) < 0.00000001)
105 $v = round($v,$ADODB_ROUND);
107 $vv = stripslashes((trim($v)));
108 if (strlen($vv) == 0) $vv .= ' ';
109 $s .= " <TD align=right>".$vv ."</TD>\n";
114 if (substr($v,8,2)=="BM" ) $v = substr($v,8);
115 $mtime = substr(str_replace(' ','_',microtime()),2);
116 $tmpname = "tmp/".uniqid($mtime).getmypid();
117 $fd = @fopen($tmpname,'a');
121 if (!function_exists ("mime_content_type")) {
122 function mime_content_type ($file) {
123 return exec("file -bi ".escapeshellarg($file));
126 $t = mime_content_type($tmpname);
127 $s .= (substr($t,0,5)=="image") ? " <td><img src='$tmpname' alt='$t'></td>\\n" : " <td><a
128 href='$tmpname'>$t</a></td>\\n";
133 if ($htmlspecialchars) $v = htmlspecialchars(trim($v));
135 if (strlen($v) == 0) $v = ' ';
136 $s .= " <TD>". str_replace("\n",'<br>',stripslashes($v)) ."</TD>\n";
143 if ($rows >= $gSQLMaxRows) {
144 $rows = "<p>Truncated at $gSQLMaxRows</p>";
150 // additional EOF check to prevent a widow header
151 if (!$rs->EOF
&& $rows %
$gSQLBlockRows == 0) {
153 //if (connection_aborted()) break;// not needed as PHP aborts script, unlike ASP
154 if ($echo) print $s . "</TABLE>\n\n";
155 else $html .= $s ."</TABLE>\n\n";
160 if ($echo) print $s."</TABLE>\n\n";
161 else $html .= $s."</TABLE>\n\n";
163 if ($docnt) if ($echo) print "<H2>".$rows." Rows</H2>";
165 return ($echo) ?
$rows : $html;
168 // pass in 2 dimensional array
169 function arr2html(&$arr,$ztabhtml='',$zheaderarray='')
171 if (!$ztabhtml) $ztabhtml = 'BORDER=1';
173 $s = "<TABLE $ztabhtml>";//';print_r($arr);
177 for ($i=0; $i<sizeof($zheaderarray); $i++
) {
178 $s .= " <TH>{$zheaderarray[$i]}</TH>\n";
183 for ($i=0; $i<sizeof($arr); $i++
) {
187 for ($j=0; $j<sizeof($a); $j++
) {
189 if (empty($val)) $val = ' ';
190 $s .= " <TD>$val</TD>\n";
193 $s .= ' <TD>'.$a."</TD>\n";
194 } else $s .= " <TD> </TD>\n";