跳至主內容區

XOOPS輕鬆架

:::

主內容區域

選擇後會自動跳轉頁面

1-3 show.php

<?php
$db = new mysqli('localhost', 'root', '12345', 'test');
$db->set_charset("utf8");

$sn     = $db->real_escape_string($_GET['sn']);
$sql    = "SELECT `type`,`content` FROM `canvas` where `sn`='{$sn}'";
$result = $db->query($sql) or die($db->error);

list($type, $content) = $result->fetch_row();

echo "<img src='data:" . $type . "," . $content . "'>";

$sql    = "SELECT * FROM `canvas` order by `sn` desc";
$result = $db->query($sql) or die($db->error);
while (list($sn, $type, $content) = $result->fetch_row()) {

    if (strpos($type, 'svg') !== false) {
        $pic = "{$sn}.svg";
    } else {
        $pic = "{$sn}.png";
    }

    echo "
    <div>
        <a href='show.php?sn=$sn'>
        <img src='$pic' style='width: 200px; border:1px solid gray; margin: 4px;'>
        </a>
    </div>";
}

echo '<a href="index.html">回首頁</a>';

 

選擇後會自動跳轉頁面

:::

左邊區域內容

書籍目錄

展開 | 闔起

快速登入


右邊區域內容

請掃此 QR Code 可連至此頁面

計數器

今天: 444444444
昨天: 2266226622662266
總計: 9545549954554995455499545549954554995455499545549

頁尾區域