|
|
|
รบกวนดูให้หน่อยครับ ดึงข้อมูลจาก database ออกมาแก้ไข แล้วเซพกลับไม่เข้ารบกวนผู้รู้หน่อยนะครับ |
|
|
|
|
|
|
|
คือพอดึงข้อมูลเก่าออกมา แล้วแก้ไข พอแก้เสร็จกลับเซฟไม่เข้า database ครับโค้ดผมจะแบ่งเป็น 4 หน้าครับ รบกวนช่วยดูไห้ผมหน่อยครับ่วาผมผิดตรงไหน
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL (mysqli)</title>
</head>
<body>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
<?php include("template_1.php"); ?>
<title>Program Employee commision</title>
<?php include("template_2.php"); ?>
<!-- ############################################################ -->
<div class="header_01">การจัดการข้อมูลพนักงานขาย |<b> รายชื่อพนักงานขาย</b>
<div align="right">
<a href="logout.php?method=logout">ออกจากระบบ </a></div></div>
<?php
ini_set('display_errors', 1);
error_reporting(~0);
$serverName = "localhost";
$userName = "root";
$userPassword = "";
$dbName = "emdata";
$conn = mysqli_connect($serverName,$userName,$userPassword,$dbName);
$sql = "UPDATE user SET
User_pass = '".$_POST["txtUser_pass"]."' ,
User_FName = '".$_POST["txtUser_FName"]."' ,
user_Lname = '".$_POST["txtuser_Lname"]."' ,
User_date = '".$_POST["txtUser_date"]."' ,
User_sex = '".$_POST["txtUser_sex"]."' ,
User_code = '".$_POST["txtUser_code"]."'
User_tel= '".$_POST["txtUser_tel"]."' ,
User_email = '".$_POST["txtUser_email"]."' ,
User_address = '".$_POST["txtUser_address"]."' ,
User_Pcode = '".$_POST["txtUser_Pcode"]."'
WHERE User_id = '".$_POST["txtUser_id"]."' ";
$query = mysqli_query($conn,$sql);
if($query) {
echo "Record update successfully";
}
mysqli_close($conn);
?>
<?php include("template_3.php"); ?>
</body>
</html>
Tag : PHP, MySQL, Ms SQL Server 2012
|
|
|
|
|
|
Date :
2016-03-20 08:31:16 |
By :
ิbank |
View :
650 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|