|
|
|
QR code generate แล้ว insert to database ยังไงหรอค่ะ |
|
|
|
|
|
|
|
สร้างเป็นรูปภาพ แล้งเก็บเฉพาะชื่อลงใน database ครับ
|
|
|
|
|
Date :
2012-04-16 20:48:28 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เก็บแต่ข้อมูล แต่เวลาอยากให้โชว์เป็น QR ก็ดึงข้อมูลมาทำเอาก็ได้ครับ ง่ายดี
|
|
|
|
|
Date :
2012-04-16 21:35:54 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือตอนนี้ generate qr ได้แล้ว แต่รูปมันไปอยุ่ใน Folder
ไม่ได้อยุ่ใน database ถ้าเก็บแต่ชื่อ นี่ชื่ออะไรหรอค่ะ ชื่อที่รับมาgenerate qr หรือชื่อ รูปภาพอะค่ะ
แล้วเวลาเรียกรูปมาโชว์ มันจะ match กับ id ยังไงอะค่ะ
อยากให้มันบันทึกรูปลงใน database คือใส่ itemID เข้าไป gen qr แล้วกด add แล้วใส่รูปเข้าไปใน database เลย
ขอโทดนะค่ะ ถ้าเกิดคำถามมัน ดูโง่เกินไป หนูไม่รุ้จิงๆ เพิ่งเคยทำ php มาแปปเดียววเอง หนูไม่ไม่ค่อยสันทัดสักเท่าไหร่
ขอบคุณจิงๆนะค่ะที่ตอบ
|
|
|
|
|
Date :
2012-04-16 23:07:09 |
By :
AmmEmpty |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
add.php
Code (PHP)
<?php
$host="localhost";
$username="root";
$pass_word="";
$db="SWGeekStore";
$Conn = mysql_connect( $host,$username,$pass_word) or die ("cannot connect");
mysql_query("SET NAMES utf8",$Conn);
mysql_select_db($db) or die("cannot connect to database");
?>
<?php /*?>
if($_POST){
$itemID = $_POST['itemID'];
$itemName = $_POST['itemName'];
$price = $_POST['price'];
$catName = $_POST['catName'];
$itemQTY = $_POST['itemQTY'];
$sql = "sql";
$errmsg = " no error";
$itemPicture = "";
if($_FILES['file']['error'] == 0) {
$file = $_FILES['file']['tmp_name'];
$f = fopen($file, "r");
$itemPicture = fread($f, filesize($file));
$itemPicture = addslashes($itemPicture);
fclose($f);
}
//$QRImage = "";
// if($_FILES['QR']['error'] == 0) {
// $QR = $_FILES['QR']['tmp_name'];
// $f = fopen($QR, "r");
// $QRImage = fread($f, filesize($QR));
// $QRImage = addslashes($QRImage);
// fclose($f);
// }
if(empty($itemName)){
$errmsg = " Can not add item 2";
}
else if(empty($price)){
$errmsg = " Can not add item 3";
}
else if(empty($catName)){
$errmsg = " Can not add item 4";
}else if(empty($itemQTY)){
$errmsg = " Can not add item 5";
}
$sql = "INSERT INTO Item (itemID, itemName, price, itemQTY, Category_catId, itemPicture, QRImage) VALUES ('$itemID' , '$itemName','$price' , '$itemQTY', '$catName', '$itemPicture', '$QRImage');";
echo $sql;
@mysql_query($sql) or die(mysql_error());
//mysql_close($objConnect);
//header("Refresh:3;url=itemlist.php");
echo "$itemID $itemName $catName $itemQTY $price";
echo $sql;
echo "$errmsg";
exit;
}
?><?php */?>
<center>
<td align=center width="400">
<br />
<form id="form1" name="form1" method="post" action="addSave.php" enctype="multipart/form-data">
<table width="439" height="278" border="0">
<tr>
<td height="22" colspan="2"><strong>Add Item</strong></td>
</tr>
<tr>
<td height="40">ItemID</td>
<td><input type="text" name="itemID" id="textfield" />
<input type="submit" name="Generate" id="button" value="Generate" /></td>
</tr>
<tr>
<td height="40">ECC</td>
<td><select name="level">
<option value="L" selected>L - smallest</option>
<option value="M">M</option>
<option value="Q">Q</option>
<option value="H">H - best</option>
</select></td>
</tr>
<tr>
<td height="40">SIZE</td>
<td><select name="size">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4" selected>4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</select></td>
</tr>
<tr>
<td width="132" height="40">Item name</td>
<td><input type="text" name="itemName" id="itemName" /> <label for="itemName"></label></td>
</tr>
<tr>
<td height="39">Price</td>
<td><input type="text" name="price" id="price" /> <label for="price"></label></td>
</tr>
<tr>
<td height="35">Item category</td>
<td width="297"><select name="catName" id="catName">
<option>Select category</option>
<?php
$sql = "select * from Category";
$dbquery = mysql_query($sql);
while($result = mysql_fetch_array($dbquery)){?>
<option value="<?=$result['catId']?>"><?=$result['catName']?></option>
<? } ?>
</select></td>
</tr>
<tr>
<td height="40">Item QTY</td>
<td><input type="text" name="itemQTY" id="itemQTY" /> <label for="itemQTY"></label></td>
</tr>
<tr>
<td height="23">Item picture</td>
<td><label for="itemPicture">
<input type="file" name="file" size="30" id="file" />
</label></td>
</tr>
<?php /*?><tr>
<td height="23">QRImage</td>
<td><label for="QRImage">
<input type="file" name="QRImage" size="30" id="file" />
</label></td>
</tr><?php */?>
<tr>
<td> </td>
<td><input type="submit" name="Add" id="Add" value="Add" />
<input type="reset" name="clare" id="clare" value="Clear" /></td>
</tr>
</table>
</form>
addSave.php
Code (PHP)
<?php
$host="localhost";
$username="root";
$pass_word="";
$db="SWGeekStore";
$Conn = mysql_connect( $host,$username,$pass_word) or die ("cannot connect");
mysql_query("SET NAMES utf8",$Conn);
mysql_select_db($db) or die("cannot connect to database");
if ($_POST['itemID']) {
//echo "POST: " , $_POST['itemID'];
// echo "REQUEST: ", $_REQUEST['itemID'];
//set it to writable location, a place for temp generated PNG files
$PNG_TEMP_DIR = dirname(__FILE__).DIRECTORY_SEPARATOR.'temp'.DIRECTORY_SEPARATOR;
//html PNG location prefix
$PNG_WEB_DIR = '../web/item/temp/';
include "../library/phpqrcode/qrlib.php";
//ofcourse we need rights to create temp dir
if (!file_exists($PNG_TEMP_DIR))
mkdir($PNG_TEMP_DIR);
$filename = $PNG_TEMP_DIR.'test.png';
//processing form input
//remember to sanitize user input in real-life solution !!!
$errorCorrectionLevel = 'L';
if (isset($_POST['level']) && in_array($_REQUEST['level'], array('L','M','Q','H')))
$errorCorrectionLevel = $_REQUEST['level'];
$matrixPointSize = 4;
if (isset($_REQUEST['size']))
$matrixPointSize = min(max((int)$_REQUEST['size'], 1), 10);
if (isset($_REQUEST['itemID'])) {
//it's very important!
if (trim($_REQUEST['itemID']) == '')
die('itemID cannot be empty! <a href="index.php?view=add">back</a>');
// user data
$filename = $PNG_TEMP_DIR.'test'.md5($_REQUEST['itemID'].'|'.$errorCorrectionLevel.'|'.$matrixPointSize).'.png';
QRcode::png($_REQUEST['itemID'], $filename, $errorCorrectionLevel, $matrixPointSize, 2);
} else {
//default data
echo 'You can provide data in GET parameter: <a href="?data=like_that">like that</a><hr/>';
QRcode::png('PHP QR Code :)', $filename, $errorCorrectionLevel, $matrixPointSize, 2);
if($_POST["Add"] == "Add")
{
//
}
}
}
if($_POST){
$itemID = $_POST['itemID'];
$itemName = $_POST['itemName'];
$price = $_POST['price'];
$catName = $_POST['catName'];
$itemQTY = $_POST['itemQTY'];
$sql = "sql";
$errmsg = " no error";
$itemPicture = "";
if($_FILES['file']['error'] == 0) {
$file = $_FILES['file']['tmp_name'];
$f = fopen($file, "r");
$itemPicture = fread($f, filesize($file));
$itemPicture = addslashes($itemPicture);
fclose($f);
}
//$QRImage = "QR";
// if($_FILES['QR']['error'] == 0) {
// $QR = $_FILES['QR']['tmp_name'];
// $f = fopen($temp, "r");
// $QRImage = fread($f, filesize($QR));
// $QRImage = addslashes($QRImage);
// fclose($f);
// }
if(empty($itemName)){
$errmsg = " Can not add item 2";
}
else if(empty($price)){
$errmsg = " Can not add item 3";
}
else if(empty($catName)){
$errmsg = " Can not add item 4";
}else if(empty($itemQTY)){
$errmsg = " Can not add item 5";
}
$sql = "INSERT INTO Item (itemID, itemName, price, itemQTY, Category_catId, itemPicture, QRImage) VALUES ('$itemID' , '$itemName','$price' , '$itemQTY', '$catName', '$itemPicture', '$PNG_TEMP_DIR');";
//echo $sql;
@mysql_query($sql) or die(mysql_error());
//mysql_close($objConnect);
//header("Refresh:3;url=index.php?view=list");
//echo "$itemID $itemName $catName $itemQTY $price";
//
//echo $sql;
//echo "$errmsg";
}
if($sql)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$sql."]";
}
//mysql_close($sql);
?>
<br>
<a href="index.php?view=list">Back to list item</a>
ต้องแก้ตรงนี้ใช้ไหมค่ะ แต่หนูลองหลายอย่างแล้ว จะทำไงให้มันบันทึกลง database
Code (PHP)
$PNG_TEMP_DIR = dirname(__FILE__).DIRECTORY_SEPARATOR.'temp'.DIRECTORY_SEPARATOR;
|
|
|
|
|
Date :
2012-04-17 03:38:23 |
By :
AmmEmpty |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หรือไม่ก็สร้างเก็บเป็นรูปภาพ แล้วบันทึกเฉพาะชื่อไฟล์ก็พอครับ
|
|
|
|
|
Date :
2012-04-17 07:06:44 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อยากทราบว่าพอมีโค้ด php ที่สามารถสแกนคิวอาร์โคด แล้วบันทึกข้อมูลนั้นลงดาต้าเบสไหมค่ะ
พอดีทำโปรเจคระบบบันทึกกิจกรรม คือต้องการเช็คนักศึกษาที่มาร่วมกิจกรรมด้วยการสแกนคิวอาร์โค้ดแล้วบันทึกลงฐานข้อมูล
|
|
|
|
|
Date :
2016-11-14 22:53:03 |
By :
ปุ๋ย |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|