|
|
|
ผม insert เข้า database แล้วมันไม่เป็นภาษาไทยให้อะครับลองใช้ mysqli_set_charset($conn, "utf8"); แล้วก้ไม่ได้ |
|
|
|
|
|
|
|
Code (PHP)
<?php
//session_start();
//include("connect1.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, shrink-to-fit=no, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>แก้ไขหน้าประกาศ</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/simple-sidebar.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="wrapper">
<!-- Sidebar -->
<div id="sidebar-wrapper">
<ul class="sidebar-nav">
<li class="sidebar-brand">
<a href="main_admin.php">
หน้าหลัก
</a>
</li>
<li>
<a href="admin_avenue.php">รายรับรายจ่าย</a>
<ul>
<li><a href="admin_avenue.php">รายรับ</a></li></li>
<li><a href="admin_spend.php">รายจ่าย</a></li></li>
</ul>
<li>
<a href="admin_alert.php">รายการแจ้งเตือน</a>
<ul>
<li><a href="admin_alertapprove.php">การอนุมัติ</a></li></li>
<li><a href="admin_alertpayment.php">การชำระเงิน</a></li></li>
<li><a href="admin_alertgive.php">การบริจาด</a></li></li>
<li><a href="admin_alertproblem.php">การแจ้งปัญหา</a></li></li>
<li><a href="admin_alertproject.php">รายละเอียดงบประมาณ</a></li></li>
</ul>
</li>
<li>
<a href="admin_purchase.php">รายการจัดซื้อ</a>
</li>
<li>
<a href="admin_projectbudget.php">งบประมาณโครงการ</a>
</li>
<li>
<a href="admin_summary.php">สรุปผล</a>
</li>
<li>
<a href="logout.php">ออกจากระบบ</a>
</li>
</ul>
</div>
<!-- /#sidebar-wrapper -->
<!-- Page Content -->
<div id="page-content-wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<h3>แก้ไขข้อมูลประกาศ</h3></br>
<?php
ini_set('display_errors', 1);
error_reporting(~0);
$serverName = "localhost";
$userName = "root";
$userPassword = "";
$dbName = "test";
$conn = mysqli_connect($serverName,$userName,$userPassword,$dbName);
mysqli_set_charset($conn, "utf8");
$sql = "UPDATE questions SET
topic = '".$_POST['topic']."',
detail = '".$_POST['detail']."',
created = '".$_POST['created']."'
WHERE id = '".$_POST['id']."' ";
$query = mysqli_query($conn,$sql);
if($query) {
echo $query;
}
mysqli_close($conn);
?>
ผมต้องแก้ยังไงหรอครับช่วยแนะนำที
Tag : PHP
|
|
|
|
|
|
Date :
2017-01-06 01:00:35 |
By :
magichan |
View :
700 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ที่ table set Collation เป็นอะไรครับ
|
|
|
|
|
Date :
2017-01-06 09:02:52 |
By :
thesin18598 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเปลี่ยนเป็นแบบนี้ดูครับ
Code (PHP)
$conn = mysqli_connect($serverName,$userName,$userPassword,$dbName);
$conn->query("set names utf8");
|
|
|
|
|
Date :
2017-01-06 10:35:11 |
By :
POY |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|