3 V4.92a 29 Aug 2006 (c) 2000-2006 John Lim (jlim#natsoft.com.my). 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 (empty($v)) $s .= "<TD> </TD>\n";
88 else if (!strpos($v,':')) {
89 $s .= " <TD>".$rs->UserDate($v,"D d, M Y") ." </TD>\n";
93 if (empty($v)) $s .= "<TD> </TD>\n";
94 else $s .= " <TD>".$rs->UserTimeStamp($v,"D d, M Y, h:i:s") ." </TD>\n";
98 if (abs(abs($v) - round($v,0)) < 0.00000001)
101 $v = round($v,$ADODB_ROUND);
103 $s .= " <TD align=right>".stripslashes((trim($v))) ." </TD>\n";
108 if (substr($v,8,2)=="BM" ) $v = substr($v,8);
109 $mtime = substr(str_replace(' ','_',microtime()),2);
110 $tmpname = "tmp/".uniqid($mtime).getmypid();
111 $fd = @fopen($tmpname,'a');
115 if (!function_exists ("mime_content_type")) {
116 function mime_content_type ($file) {
117 return exec("file -bi ".escapeshellarg($file));
120 $t = mime_content_type($tmpname);
121 $s .= (substr($t,0,5)=="image") ? " <td><img src='$tmpname' alt='$t'></td>\\n" : " <td><a
122 href='$tmpname'>$t</a></td>\\n";
127 if ($htmlspecialchars) $v = htmlspecialchars(trim($v));
129 if (strlen($v) == 0) $v = ' ';
130 $s .= " <TD>". str_replace("\n",'<br>',stripslashes($v)) ."</TD>\n";
137 if ($rows >= $gSQLMaxRows) {
138 $rows = "<p>Truncated at $gSQLMaxRows</p>";
144 // additional EOF check to prevent a widow header
145 if (!$rs->EOF
&& $rows %
$gSQLBlockRows == 0) {
147 //if (connection_aborted()) break;// not needed as PHP aborts script, unlike ASP
148 if ($echo) print $s . "</TABLE>\n\n";
149 else $html .= $s ."</TABLE>\n\n";
154 if ($echo) print $s."</TABLE>\n\n";
155 else $html .= $s."</TABLE>\n\n";
157 if ($docnt) if ($echo) print "<H2>".$rows." Rows</H2>";
159 return ($echo) ?
$rows : $html;
162 // pass in 2 dimensional array
163 function arr2html(&$arr,$ztabhtml='',$zheaderarray='')
165 if (!$ztabhtml) $ztabhtml = 'BORDER=1';
167 $s = "<TABLE $ztabhtml>";//';print_r($arr);
171 for ($i=0; $i<sizeof($zheaderarray); $i++
) {
172 $s .= " <TH>{$zheaderarray[$i]}</TH>\n";
177 for ($i=0; $i<sizeof($arr); $i++
) {
181 for ($j=0; $j<sizeof($a); $j++
) {
183 if (empty($val)) $val = ' ';
184 $s .= " <TD>$val</TD>\n";
187 $s .= ' <TD>'.$a."</TD>\n";
188 } else $s .= " <TD> </TD>\n";