コード例 #1
0
ファイル: db_view.php プロジェクト: wdingsoft/test1.jit
$r2htm = new DbRow2Htm();
echo "<table border='1'>\r\n";
$r2htm->htm_tr_title($ret[0]);
foreach ($ret as $row) {
    $r2htm->htm_tr_dat_rd($sql, $row);
    if (isset($row['jtoh'])) {
        $r2htm->push2TmpArr($row['jtoh']);
    }
}
echo "</table>\r\n";
echo "<br>total hieros=" . count($r2htm->TmpArr);
echo "<br>";
if (isset($r2htm->TmpArr)) {
    sort($r2htm->TmpArr);
    foreach ($r2htm->TmpArr as $hid) {
        $fname = $r2htm->img_src_of($hid, $hid);
        print "<img src='{$fname}' /img>{$hid}";
    }
}
?>






<!-- id="clentarea"-->


<br><br>Help:<br>
Shift + OnMouseMove ==> move sql editor. <br>
コード例 #2
0
 public function show_hid_single($hid)
 {
     if ($hid == '') {
         return;
     }
     $this->h4c[] = $hid;
     $d2h = new DbRow2Htm();
     $src = $d2h->img_src_of($hid);
     echo "<img src='" . $src . "'/>{$hid}";
 }