tohtml.inc.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <?php
  2. /*
  3. V4.60 24 Jan 2005 (c) 2000-2005 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.
  7. Some pretty-printing by Chris Oxenreider <oxenreid@state.net>
  8. */
  9. // specific code for tohtml
  10. GLOBAL $gSQLMaxRows,$gSQLBlockRows;
  11. $gSQLMaxRows = 1000; // max no of rows to download
  12. $gSQLBlockRows=20; // max no of rows per table block
  13. // RecordSet to HTML Table
  14. //------------------------------------------------------------
  15. // Convert a recordset to a html table. Multiple tables are generated
  16. // if the number of rows is > $gSQLBlockRows. This is because
  17. // web browsers normally require the whole table to be downloaded
  18. // before it can be rendered, so we break the output into several
  19. // smaller faster rendering tables.
  20. //
  21. // $rs: the recordset
  22. // $ztabhtml: the table tag attributes (optional)
  23. // $zheaderarray: contains the replacement strings for the headers (optional)
  24. //
  25. // USAGE:
  26. // include('adodb.inc.php');
  27. // $db = ADONewConnection('mysql');
  28. // $db->Connect('mysql','userid','password','database');
  29. // $rs = $db->Execute('select col1,col2,col3 from table');
  30. // rs2html($rs, 'BORDER=2', array('Title1', 'Title2', 'Title3'));
  31. // $rs->Close();
  32. //
  33. // RETURNS: number of rows displayed
  34. function rs2html(&$rs,$ztabhtml=false,$zheaderarray=false,$htmlspecialchars=true,$echo = true)
  35. {
  36. $s ='';$rows=0;$docnt = false;
  37. GLOBAL $gSQLMaxRows,$gSQLBlockRows;
  38. if (!$rs) {
  39. printf(ADODB_BAD_RS,'rs2html');
  40. return false;
  41. }
  42. if (! $ztabhtml) $ztabhtml = "BORDER='1' WIDTH='98%'";
  43. //else $docnt = true;
  44. $typearr = array();
  45. $ncols = $rs->FieldCount();
  46. $hdr = "<TABLE COLS=$ncols $ztabhtml><tr>\n\n";
  47. for ($i=0; $i < $ncols; $i++) {
  48. $field = $rs->FetchField($i);
  49. if ($zheaderarray) $fname = $zheaderarray[$i];
  50. else $fname = htmlspecialchars($field->name);
  51. $typearr[$i] = $rs->MetaType($field->type,$field->max_length);
  52. //print " $field->name $field->type $typearr[$i] ";
  53. if (strlen($fname)==0) $fname = '&nbsp;';
  54. $hdr .= "<TH>$fname</TH>";
  55. }
  56. $hdr .= "\n</tr>";
  57. if ($echo) print $hdr."\n\n";
  58. else $html = $hdr;
  59. // smart algorithm - handles ADODB_FETCH_MODE's correctly by probing...
  60. $numoffset = isset($rs->fields[0]) ||isset($rs->fields[1]) || isset($rs->fields[2]);
  61. while (!$rs->EOF) {
  62. $s .= "<TR valign=top>\n";
  63. for ($i=0; $i < $ncols; $i++) {
  64. if ($i===0) $v=($numoffset) ? $rs->fields[0] : reset($rs->fields);
  65. else $v = ($numoffset) ? $rs->fields[$i] : next($rs->fields);
  66. $type = $typearr[$i];
  67. switch($type) {
  68. case 'D':
  69. if (!strpos($v,':')) {
  70. $s .= " <TD>".$rs->UserDate($v,"D d, M Y") ."&nbsp;</TD>\n";
  71. break;
  72. }
  73. case 'T':
  74. $s .= " <TD>".$rs->UserTimeStamp($v,"D d, M Y, h:i:s") ."&nbsp;</TD>\n";
  75. break;
  76. case 'I':
  77. case 'N':
  78. $s .= " <TD align=right>".stripslashes((trim($v))) ."&nbsp;</TD>\n";
  79. break;
  80. /*
  81. case 'B':
  82. if (substr($v,8,2)=="BM" ) $v = substr($v,8);
  83. $mtime = substr(str_replace(' ','_',microtime()),2);
  84. $tmpname = "tmp/".uniqid($mtime).getmypid();
  85. $fd = @fopen($tmpname,'a');
  86. @ftruncate($fd,0);
  87. @fwrite($fd,$v);
  88. @fclose($fd);
  89. if (!function_exists ("mime_content_type")) {
  90. function mime_content_type ($file) {
  91. return exec("file -bi ".escapeshellarg($file));
  92. }
  93. }
  94. $t = mime_content_type($tmpname);
  95. $s .= (substr($t,0,5)=="image") ? " <td><img src='$tmpname' alt='$t'></td>\\n" : " <td><a
  96. href='$tmpname'>$t</a></td>\\n";
  97. break;
  98. */
  99. default:
  100. if ($htmlspecialchars) $v = htmlspecialchars(trim($v));
  101. $v = trim($v);
  102. if (strlen($v) == 0) $v = '&nbsp;';
  103. $s .= " <TD>". str_replace("\n",'<br>',stripslashes($v)) ."</TD>\n";
  104. }
  105. } // for
  106. $s .= "</TR>\n\n";
  107. $rows += 1;
  108. if ($rows >= $gSQLMaxRows) {
  109. $rows = "<p>Truncated at $gSQLMaxRows</p>";
  110. break;
  111. } // switch
  112. $rs->MoveNext();
  113. // additional EOF check to prevent a widow header
  114. if (!$rs->EOF && $rows % $gSQLBlockRows == 0) {
  115. //if (connection_aborted()) break;// not needed as PHP aborts script, unlike ASP
  116. if ($echo) print $s . "</TABLE>\n\n";
  117. else $html .= $s ."</TABLE>\n\n";
  118. $s = $hdr;
  119. }
  120. } // while
  121. if ($echo) print $s."</TABLE>\n\n";
  122. else $html .= $s."</TABLE>\n\n";
  123. if ($docnt) if ($echo) print "<H2>".$rows." Rows</H2>";
  124. return ($echo) ? $rows : $html;
  125. }
  126. // pass in 2 dimensional array
  127. function arr2html(&$arr,$ztabhtml='',$zheaderarray='')
  128. {
  129. if (!$ztabhtml) $ztabhtml = 'BORDER=1';
  130. $s = "<TABLE $ztabhtml>";//';print_r($arr);
  131. if ($zheaderarray) {
  132. $s .= '<TR>';
  133. for ($i=0; $i<sizeof($zheaderarray); $i++) {
  134. $s .= " <TH>{$zheaderarray[$i]}</TH>\n";
  135. }
  136. $s .= "\n</TR>";
  137. }
  138. for ($i=0; $i<sizeof($arr); $i++) {
  139. $s .= '<TR>';
  140. $a = &$arr[$i];
  141. if (is_array($a))
  142. for ($j=0; $j<sizeof($a); $j++) {
  143. $val = $a[$j];
  144. if (empty($val)) $val = '&nbsp;';
  145. $s .= " <TD>$val</TD>\n";
  146. }
  147. else if ($a) {
  148. $s .= ' <TD>'.$a."</TD>\n";
  149. } else $s .= " <TD>&nbsp;</TD>\n";
  150. $s .= "\n</TR>\n";
  151. }
  152. $s .= '</TABLE>';
  153. print $s;
  154. }
  155. ?>