|
|
|
รบกวนสอบถามเรื่องฐานข้อมูล mysql ไม่ยอมเป็นภาษาไทยค่ะ |
|
|
|
|
|
|
|
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> //ไว้ด้านบนสุดครับ
|
|
|
|
|
Date :
2013-03-08 14:27:27 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองแล้วมันไม่ได้อ่ะค่ะ
|
|
|
|
|
Date :
2013-03-08 14:30:24 |
By :
supaporn.gig |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code
<?php session_start();
if($_POST) {
$id_cus =$_POST['id_cus'];
$nameco =$_POST['nameco'];
$login =$_POST['login'];
$pw1 =$_POST['pw1'];
$pw2 =$_POST['pw2'];
$add =$_POST['add'];
$tel =$_POST['tel'];
if (empty ($nameco)) {
$errmsg = "ท่านยังไม่ได้กรอกชื่อ";
}
else if (!filter_var($login,FILTER_VALIDATE_EMAIL)) {
$errmsg = "อีเมล์ไม่ถูกต้องตามรูปแบบ";
}
else if ($pw1 !=$pw2) {
$errmsg = "ท่านใส่รหัสผ่านสองครั้งไม่ตรงกัน";
}
else if (!eregi ("[a-z 0-9] {4,10}",$pw1)) {
$errmsg = "รหัสผ่านต้องประกอบด้วย a-z หรือ 0-9 จำนวน 4-10 ตัว";
}
else if (empty ($add)) {
$errmsg = "ท่านยังไม่ได้ใส่ที่อยู่";
}
else if (empty ($tel)) {
$errmsg = "ท่านยังไม่ได้ใส่เบอร์โทรศัพท์";
}
if($errmsg != "") {
echo "<font size=\"5\" color=\"#000000\">$errmsg<p />//ตรงนี้หน้าเว็บก็ไม่ยอมขึ้นภาษาไทยให้ถ้าเกิดข้อผิด[/font]พลาดต้องเซ็ตค่าตรงไหนป่าวค่ะ
<a href=\"javascript:history.back();\">Back</a></font>";
}
else {
include('connect_db.php');
$sqlinsertcus = " insert into tb_customer (Id_customer,Company_name,Email,password,Address,Tel) value
('$id_cus','$nameco','$login','pw1','$add','$tel') " ;
$excsqlinsertcus=mysql_query($sqlinsertcus) or die(mysql_error());
}
exit;
}
?>
<!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=utf-8" />
<title>Welcome to website pitakthong</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<div align="center"><strong>สมัครสมาชิกใหม่</strong></div>
<table width="46%" border="1" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><div align="right">รหัสลูกค้า</div></td>
<td><label>
<input name="id_cus" type="text" id="id_cus" maxlength="13" />
</label></td>
</tr>
<tr>
<td><div align="right">ชื่อบริษัท</div></td>
<td><input type="text" name="nameco" id="nameco" /></td>
</tr>
<tr>
<td><div align="right">อีเมล์เพื่อเป็นล็อกอิน</div></td>
<td><input type="text" name="login" id="login" /></td>
</tr>
<tr>
<td><div align="right">รหัสผ่าน</div></td>
<td><input name="pw1" type="password" id="pw1" maxlength="10" /></td>
</tr>
<tr>
<td><div align="right">ยืนยันรหัสผ่าน</div></td>
<td><label>
<input name="pw2" type="password" id="pw2" maxlength="10" />
</label></td>
</tr>
<tr>
<td><div align="right">ที่อยู่</div></td>
<td><label>
<textarea name="add" id="add" cols="25" rows="5"></textarea>
</label></td>
</tr>
<tr>
<td><div align="right">เบอร์โทรศัพท์</div></td>
<td><input name="tel" type="text" id="tel" size="10" maxlength="10" /></td>
</tr>
<tr>
<td><div align="right">รหัสป้องกัน</div> <div align="justify"></div></td>
<td>
<label></label>
<iframe name="a"src="captcha.php? alt="captcha" frameborder="0" width="120" height="60" scrolling="no">
</iframe>
<label></label>
</iframe>
<label></label>
<label></label>
<a href="captcha.php?width=100&height=40&characters=5" target="a"><img src="refresh_icon.gif" /></a><br />
<input type="text" name="cap" id="cap" />
</label></td>
</tr>
<tr>
<td><div align="right"></div></td>
<td><label>
<input type="submit" name="button" id="button" value="ตกลง" />
<input type="submit" name="button2" id="button2" value="ยกเลิก" />
</label></td>
</tr>
</table>
</form>
</body>
</html>
|
|
|
|
|
Date :
2013-03-08 14:33:12 |
By :
supaporn.gig |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
mssql_query("SET NAMES utf8");
|
|
|
|
|
Date :
2013-03-08 14:33:46 |
By :
ss |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเพิ่มCode (PHP)
mysql_query("SET NAMES UTF8");
|
|
|
|
|
Date :
2013-03-08 14:33:48 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อันนี้ไฟล์ connect อ่ะค่ะ <ช่วยหน่อยนะค่ะ>
<?php
mysql_connect("localhost","root","1234");
mysql_select_db("pitakthong_db");
mysql_query("SET NAMES UTF-8");
mysql_query("SET character_set_results=utf-8");
mysql_query("SET character_set_client=utf-8");
mysql_query("SET character_set_connection=utf-8");
mysql_query("collation_connection = utf8_unicode_ci");
mysql_query("collation_database = utf8_unicode_ci");
mysql_query("collation_server = utf8_unicode_ci");
?>
|
|
|
|
|
Date :
2013-03-08 14:38:52 |
By :
supaporn.gig |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
mysql_query("SET NAMES UTF-8"); //ผิด
mysql_query("SET NAMES UTF8"); //ถูก
|
|
|
|
|
Date :
2013-03-08 14:49:07 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้ปัญหาภาษาไทย php กับ MySQL (TIS-620 กับ UTF-8)
|
|
|
|
|
Date :
2013-03-08 15:06:15 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากๆๆเลยค่ะได้แล้ว
|
|
|
|
|
Date :
2013-03-08 15:07:52 |
By :
supaporn.gig |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|