|
|
|
fckeditor ไม่สามารถเก็บข้อมูลภาษาไทยลงฐานข้อมูลได้ รบกวนพี่ๆช่วยให้คำปรึกษา ด้วยครับ |
|
|
|
|
|
|
|
add_estimate.php
<?
include('connectb.php');
include("fckeditor/fckeditor.php") ; // include ไฟล์ fckeditor.php
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-874">
<title>เพิ่มข้อมูลเล่มประเมิน</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="check_add_estimate.php">
<table width="800" border="0">
<tr>
<td width="100">ชื่อเล่มประเมิน</td>
<td width="690"><?php
$ofckeditor = new fckeditor('estimate_name') ; // estimate_name คือ ชื่อของ text area
$ofckeditor->BasePath = 'fckeditor/' ; // ระบุที่อยู่ของ fckeditor
$ofckeditor->Width = '600' ; // ความกว้าง
$ofckeditor->Height = '350' ; // ความสูง (หน่วยเป็น pixel)
$ofckeditor->Value = ''; // ข้อมูลที่ต้องการให้ปรากฏใน Editor ถ้าเป็นช่องกรอกข้อความเปล่าๆ ก็ใส่ว่า $oFCKeditor->Value = '';
$ofckeditor->Create() ;
?></td>
</tr>
<tr>
<td>ผู้เขียน</td>
<td><label>
<input name="estimate_make" type="text" id="estimate_make" />
</label></td>
</tr>
<tr>
<td>ปี</td>
<td><label>
<input name="estimate_year" type="text" id="estimate_year" />
</label></td>
</tr>
<tr>
<td>เลขทะเบียน</td>
<td><label>
<input type="text" name="estimate_registration_number" id="estimate_registration_number" />
</label></td>
</tr>
<tr>
<td>เล่มที่</td>
<td><label>
<input name="estimate_number" type="text" id="estimate_number" />
</label></td>
</tr>
<tr>
<td>จำนวน</td>
<td><label>
<input name="estimate_total" type="text" id="estimate_total" />
</label></td>
</tr>
<tr>
<td>สถานะ</td>
<td><label>
<input name="estimate_status" type="text" id="estimate_status" />
</label></td>
</tr>
<tr>
<td><label>
<input type="submit" name="button" id="button" value="เพิ่มข้อมูล" />
</label></td>
<td><label>
<input type="reset" name="button2" id="button2" value="ยกเลิก" />
</label></td>
</tr>
</table>
</form>
</body>
</html>
check_add_estimate.php
<?
include('connectb.php');
include("fckeditor/fckeditor.php") ; // include ไฟล์ fckeditor.php
if(isset($_POST['estimate_name'],$_POST['estimate_make'],$_POST['estimate_year'],$_POST['estimate_registration_number'],$_POST['estimate_number'],$_POST['estimate_total'],$_POST['estimate_status'])){
// ¤ÓÊÑè§ SQL áÅÐÊÑè§ãËé·Ó§Ò¹
echo $sql = "INSERT INTO estimate (estimate_name,estimate_make,estimate_year,estimate_registration_number,estimate_number,estimate_total,estimate_status) VALUES
('".$_POST['estimate_name']."','".$_POST['estimate_make']."','".$_POST['estimate_year']."','".$_POST['estimate_registration_number']."','".$_POST['estimate_number']."','".$_POST['estimate_total']."','".$_POST['estimate_status']."')";
// ત¤èҢͧ¢éÍÁÙÅ·ÕèÊè§ÁÒ¨Ò¡¿ÍÃìÁ
//mysql_query("SET NAMES UTF8");// áÊ´§¼ÅÀÒÉÒä·Â
$dbquery = mysql_query($sql)or die(mysql_error());
echo "<a href = 'select_add_estimate.php'>แสดงข้อมูล</a>";
}
else {
echo "<a href = 'add_estimate.php'>กลับไปกรอกใหม่</a>";
}
?>
select_add_estimate.php
<?
include ('connectb.php');
include("fckeditor/fckeditor.php") ; // include ไฟล์ fckeditor.php
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>แสดงข้อมูลเล่มประเมิน</title>
<meta http-equiv=Content-Type content="text/html; charset=windows-874">
<style type="text/css">
<!--
a:link {
color: #03F;
text-decoration: none;
}
a:visited {
color: #03F;
text-decoration: none;
}
a:hover {
color: #F00;
text-decoration: none;
}
a:active {
color: #03F;
text-decoration: none;
}
-->
</style><body>
<table width="700" border="0" align="center">
<tr>
<td align="center" width="195" bgcolor="#FFFF66">ชื่อเล่มประเมิน</td>
<td align="center" width="155" bgcolor="#FFFF66">ผู้เขียน</td>
<td align="center" width="17" bgcolor="#FFFF66">ปี</td>
<td align="center" width="68" bgcolor="#FFFF66">เลขทะเบียน</td>
<td align="center" width="50" bgcolor="#FFFF66">เล่มที่</td>
<td align="center" width="40" bgcolor="#FFFF66">จำนวน</td>
<td align="center" width="41" bgcolor="#FFFF66">สถานะ</td>
<td align="center" width="35" bgcolor="#FFFF66"> </td>
<td align="center" width="61" bgcolor="#FFFF66"> </td>
</tr>
<?
$a = "SELECT * FROM estimate";
$b = mysql_query($a);
while($c = mysql_fetch_array($b)){
?>
<tr>
<td width="195" bgcolor="#99FF99" ><? echo $c['estimate_name']; ?></td>
<td width="155" bgcolor="#99FF99" ><? echo $c['estimate_make']; ?></td>
<td width="17" bgcolor="#99FF99" ><? echo $c['estimate_year']; ?></td>
<td align="center" width="68" bgcolor="#99FF99" ><? echo $c['estimate_registration_number']; ?></td>
<td width="50" bgcolor="#99FF99" align="center"><? echo $c['estimate_number']; ?></td>
<td width="40" bgcolor="#99FF99" align="center" ><? echo $c['estimate_total']; ?></td>
<td width="41" bgcolor="#99FF99" align="center" ><? echo $c['estimate_status']; ?></td>
<td width="35" bgcolor="#99FF99" align="center"><a href="edit_estimate.php?id=<? echo $c['id_estimate']; ?>">แก้ไข</a></td>
<td width="61" bgcolor="#99FF99" align="center" ><a href="delete_estimate.php?id=<? echo $c['id_estimate']; ?>">ลบ</a></td>
</tr>
<?
}
?>
</table>
<table width="700" border="0" align="center">
<tr>
<td align="right"><a href = 'add_estimate.php'>กลับไปเพิ่มข้อมูล</a> </td>
</tr>
</table>
</body>
</html>
Tag : - - - -
|
|
|
|
|
|
Date :
2010-01-20 11:36:17 |
By :
thirawood |
View :
1737 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่สามารถเนี้ยคือ บันทึกลงฐานข้อมูลไม่ได้ (แล้วมี Error มัย และ error อะไร)
หรือว่าบันทึกไปแล้วเป้นภาษาต่างดาว
|
|
|
|
|
Date :
2010-01-20 11:51:18 |
By :
martman26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผม echo INSERT INTO estimate (estimate_name,estimate_make,estimate_year,estimate_registration_number,estimate_number,estimate_total,estimate_status) VALUES ('
กกกกกกกกกกกกกกก
','กกกกกกกกก','2552','1/2552','1','1','1')
ได้แบบนี้ครับ มันไม่ error นะครับ แต่ไม่เก็บเข้าฐานข้อมูลให้ เฉพาะ กกกกกกกกกกกกกกก ','กกกกกกกกก' ส่วน
,'2552','1/2552','1','1','1' เก็บเข้าฐานข้อมูลให้นะ จะเป็นเฉพาะภาษาไทยเท่านั้นครับ ภาษาอังกฤษเก็บได้
|
|
|
|
|
Date :
2010-01-20 12:08:37 |
By :
thirawood |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมแก้ได้แล้วครับ <meta http-equiv=Content-Type content="text/html; charset=utf-8"> นี้คือคำตอบที่หามาทั้งวัน
|
|
|
|
|
Date :
2010-01-20 14:24:43 |
By :
thirawood |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|