:::

1-2 save.php

<?php
$db = new mysqli('localhost', 'root', '12345', 'test');
if ($db->connect_error) {
    die('無法連上資料庫:' . $db->connect_error);
}
$db->set_charset("utf8");

$type    = $db->real_escape_string($_POST['sig'][0]);
$content = $db->real_escape_string($_POST['sig'][1]);

$sql = "INSERT INTO `canvas` (`type`, `content`) VALUES ('{$type}', '{$content}')";
$db->query($sql) or die($db->error);
$sn = $db->insert_id;

if (strpos($type, 'svg') !== false) {
    file_put_contents("{$sn}.svg", $_POST['sig'][1]);
} else {
    $data = base64_decode($_POST['sig'][1]);
    file_put_contents("{$sn}.png", $data);
}

echo $sn;

 


:::

書籍目錄

展開 | 闔起

http%3A%2F%2Fcampus-xoops.tn.edu.tw%2Fmodules%2Ftad_book3%2Fpage.php%3Ftbdsn%3D1126

計數器

今天: 1787178717871787
昨天: 3176317631763176
總計: 7451219745121974512197451219745121974512197451219