|
|
|
เพิ่มข้อมูลลงฐานข้อมูลแล้วสามารถดูข้อมูลที่ตัวเองเพิ่มเข้าไปได้ต้องทำยังไงหรอ ครับ |
|
|
|
|
|
|
|
คือผมต้องการให้คน login เข้ามาแล้ว มาเพิ่มข้อมูลลงฐานข้อมูลแล้วสามารถดูข้อมูลที่ตัวเองเพิ่มเข้าไปได้ ต้องทำยังไงหรอ ครับ
และยังเพิ่มข้อมูลเป็นภาษาไทยไม่ได้เพิ่มได้แต่ภาษาอังกฤษถ้าเพิ่มเป็นภาษาไทยจะเป็นภาษาตางดาว ครับ
Code (PHP)
<?php
ini_set('display_errors', 1);
error_reporting(~0);
$serverName = "localhost";
$userName = "root";
$userPassword = "";
$dbName = "spare_parts";
$conn = mysqli_connect($serverName,$userName,$userPassword,$dbName);
$sql = "INSERT INTO device_owner (DO_Part,DO_Brand,DO_Version,DO_Hardware_Type,DO_Device_Type,DO_Detail,DO_Quantity,DO_Record_Date,DO_Source_of_Device,DO_Note)
VALUES ('".$_POST["txtowner"]."','".$_POST["txtbrand"]."','".$_POST["txtversion"]."'
,'".$_POST["txthardwaretype"]."','".$_POST["txttype"]."','".$_POST["txtdetail"]."'
,'".$_POST["txtquantity"]."','".$_POST["txtdate"]."','".$_POST["txtdevice"]."'
,'".$_POST["txtnote"]."')";
$query = mysqli_query($conn,$sql);
if($query) {
echo "Record add successfully";
}
mysqli_close($conn);
?>
Tag : PHP, HTML/CSS, JavaScript, Ajax, jQuery
|
|
|
|
|
|
Date :
2016-09-20 18:55:07 |
By :
earthkasidit |
View :
801 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
select
|
|
|
|
|
Date :
2016-09-20 22:46:36 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดูข้อมูลตัวเอง จะต้อง WHERE พวก User หรือ id ของตัวเองครับ ส่วนภาษาไทย อ่านที่นี่
แก้ปัญหาภาษาไทย php กับ MySQL (TIS-620 กับ UTF-8)
|
|
|
|
|
Date :
2016-09-21 21:42:55 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|