|
|
|
สอบถามเรื่อง หน้าจอรับข้อมูลเข้ามาใช้ ครับ ขอผู้รู้ช่วยที |
|
|
|
|
|
|
|
คือ ผมต้องการ แบบรับข้อมูลผู้ใช้เข้ามาเก็บไว้ในฐานข้อมูลครับ
- โดยมีการถ่ายรูป
- รับข้อมูลจากการยิงบาร์โค๊ด
- ติ๊กเลือกเข้าหรือออกครับ
ปัญหา ครับ
- raido button คือจะให้มันอยู่บันทัดเดียวกันครับ แต่ไม่รู้จะใช้ funtion อะไรครับ
- คือจะให้มันอยู่กึงกลางครับ แต่เวลาใส่ขอบ ข้างซ้ายและขวา ของเว็บ เหมือน style cheet มันชนกันกับตัวถ่ายภาพครับ
- ขอสอบถามผู้รู้เกี่ยวกับการบันทึกข้อมูลลงฐานข้อมูลด้วยครับ คือ ณ.ตอนนี้บันทึกรูปได้แล้ว แต่บันทึกได้แค่ครั้งเดียวครับ
- แล้วถ้าจะเพิ่มเพื่อเก็บ เข้า-ออก และ รหัสเข้าไปด้วย ควรใช้รูปแบบไหนครับ
ขอผู้รู้ช่วยแนะนำเป็นแนวทางด้วยครับ พอดีผมทำระบบนับคนเข้าออกห้องสมุดครับ
code : หน้าจอ
Code (PHP)
<style type="text/css">
body{
margin:0;
padding:0;
}
.img
{ background:#ffffff;
padding:12px;
border:1px solid #999999; }
.shiva{
-moz-user-select: none;
background: #2A49A5;
border: 1px solid #082783;
box-shadow: 0 1px #4C6BC7 inset;
color: white;
padding: 3px 5px;
text-decoration: none;
text-shadow: 0 -1px 0 #082783;
font: 12px Verdana, sans-serif;}
</style>
<html>
<head>
</head>
<title></title>
<body>
<center>
<form>
<!-- show camera -->
<center>
<div id="outer" style="margin:0px; width:100%; height:90px;>
</div>
<div id="main" style="height:800px; width:100%">
<div id="content" style="float:center; width:500px; margin-left:50px; margin-top:20px;" align="center">
<script type="text/javascript" src="webcam.js"></script>
<script language="JavaScript">
document.write( webcam.get_html(440, 240) );
</script>
<!-- list box,buttom,radio buttom -->
<tr>
<td align="right"><font face='TH SarabunPSK' size="4.9" color="#000000"><b><p></p></b></font></td>
<td align="center">รหัสผู้เข้าใช้บริการ :</td>
<td>
<input name="user_id_card" type="text" size="25" maxlength="14" style="width:150px" onkeypress="check_number()" /><font color="red" size="1"> *ใส่รหัสหรือการยิง barcode ด้วย รหัสนิสิต</font></td>
</td>
</tr>
<br>
<input name=''rodin" type="radio" value="in">เข้า<br>
<input name=''rodout" type="radio" value="out">ออก<br>
<br />
<input type=button value="ตั้งค่ากล้อง" onClick="webcam.configure()" class="shiva">
<input type=button value="ถ่ายภาพ" onClick="take_snapshot()" class="shiva">
</form>
</div>
<!-- style cheet -->
<script type="text/javascript">
webcam.set_api_url( 'handleimage.php' );
webcam.set_quality( 90 ); // JPEG quality (1 - 100)
webcam.set_shutter_sound( true ); // play shutter click sound
webcam.set_hook( 'onComplete', 'my_completion_handler' );
function take_snapshot(){
// take snapshot and upload to server
document.getElementById('img').innerHTML = '<h1>กรุณารอสักครู่...อัพโหลดไฟล์</h1>';
webcam.snap();
}
function my_completion_handler(msg) {
// extract URL out of PHP output
if (msg.match(/(http\:\/\/\S+)/)) {
// show JPEG image in page
document.getElementById('img').innerHTML ='<h3>อัพโหลดไฟล์ภาพเสร็จสิ้น !</h3>'+msg;
document.getElementById('img').innerHTML ="<img src="+msg+" class=\"img\">";
// reset camera for another shot
webcam.reset();
}
else {alert("Error occured we are trying to fix now: " + msg); }
}
</script>
<div id="img" style=" height:800px; width:500px; float:left; margin-left:40px; margin-top:20px;">
</div>
</div>
</center>
</body>
</html>
code : บันทึกลงฐานข้อมูลครับ
Code (PHP)
<?php
session_start();
$_SESSION['id']="1";
$id=$_SESSION['id'];
include 'connection.php';
$name = date('YmdHis');
$newname="images/".$name.".jpg";
$file = file_put_contents( $newname, file_get_contents('php://input') );
if (!$file) {
print "ระบบถ่ายรูปไม่ได้กรุณาติดต่อเจ้าหน้าที่ !";
exit();
}
else
{
$sql="insert into image (image,id,Filename,) values ('$image','$id','$newname')";
$result=mysqli_query($con,$sql);
$value=mysqli_insert_id($con);
$_SESSION["myvalue"]=$value;
}
$user_id_card=$_POST["user_id_card"];
$url = 'http://' . $_SERVER['HTTP_HOST'] . dirname($_SERVER['REQUEST_URI']) . '/' . $newname;
print "$url\n";
?>
ขอขอบพระคุณ ร่วงหน้าครับ
Tag : PHP
|
|
|
|
|
|
Date :
2015-01-21 14:11:04 |
By :
keng.l3uu |
View :
719 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|