|
|
|
เวลา insert record จะเป็นเครื่องหมาย ????????? ตรงหน้าเว็บค่ะ |
|
|
|
|
|
|
|
เพิ่มเติมอีกนิดน่ะค่ะ
ในส่วนของ phpmyadmin ก็ได้ set ค่า เป็น utf-8 หมดแล้วด้วยค่ะ
|
|
|
|
|
Date :
2011-10-27 21:50:13 |
By :
momopat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1. ตอนคิวรีข้อมูลขึ้นมาแสดง ควรใส่นี่ด้วยครับ mysql_query("SET NAMES UTF8"); เหมือนตอนบันทึก
2. File Type
ผมก็เดาเอานะ...
|
|
|
|
|
Date :
2011-10-27 21:53:34 |
By :
t-monroe |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองแล้วค่ะ แต่ก็ยังเหมือนเดิมอยู่เลย
ขอบคุณน่ะค่ะ
|
|
|
|
|
Date :
2011-10-27 22:01:49 |
By :
momopat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อีกอย่างนึงครับ คือการ save ไฟล์ โดย encode ให้เป็น utf-8 ด้วยครับ ถ้าใช้ Editplus ให้ save as แล้วเลือก encode เป็น utf-8
|
|
|
|
|
Date :
2011-10-27 22:28:00 |
By :
Songkram |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้ให้ตรงกันทั้งหมดครับ file encoding, meta tag, set name, set character_set_results อะไรพวกนี้มันต้องให้เหมือนกันจะได้ไม่มีปัญหาอีกนะ
|
|
|
|
|
Date :
2011-10-27 22:29:47 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตั้งแต่เมื่อวานตอนกลางคืน จนถึงตอนนี้ยังหาวิธีแก้ไม่ได้เลยค่ะ ลองทำตามหมดแล้ว ทุกอย่างที่มีบอก ก็ยังไม่ได้ ลองทำโปรเจคแก้ใหม่เลย ก็ยังไม่ได้อยูดีอ่ะค่ะ
ยังไงช่วยดู code ที่ทำการแก้หน่อยน่ะค่ะ ว่ามีตรงไหนผิดบ้าง
ส่วนของ หน้า form
<title>Warn voyage :: ระบบแจ้งเตือนสำหรับผู้ใช้มือถือระบบปฏิบัติการ Android</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head>
<body>
<form name="form1" method="post" action="saveregister.php">
<b>Register Form ::</b> หน้าสมัครสมาชิก <br>
<hr size="2px" width="600px" align="left">
<table width="400" style="width: 400px">
<tbody>
<tr>
<td width="125"> Username</td>
<td width="180">
<input name="txtUsername" type="text" id="txtUsername" size="20">
</td>
</tr>
<tr>
<td> Password</td>
<td><input name="txtPassword" type="password" id="txtPassword">
</td>
</tr>
<tr>
<td> Confirm Password</td>
<td><input name="txtConPassword" type="password" id="txtConPassword">
</td>
</tr>
<tr>
<td> Name</td>
<td><input name="txtName" type="text" id="txtName" size="35"></td>
</tr>
<tbody>
</table>
|
ประวัติการแก้ไข 2011-10-28 13:46:53
|
|
|
|
Date :
2011-10-28 13:45:45 |
By :
momopat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ส่วนหน้า save
Code (PHP)
<html>
<head>
<title>Warn voyage :: ระบบแจ้งเตือนสำหรับผู้ใช้มือถือระบบปฏิบัติการ Android</title>
<meta http-equiv="Content-Type" content="text/html; charset= utf-8"></head>
<body>
<?php
include ("function/connectdb.php");// connect database
mysql_query("SET NAMES UTF8");
$strSQL = "SELECT * FROM userinfo WHERE username = '".trim($_POST['txtUsername'])."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
$strSQL1 = "SELECT * FROM userinfo WHERE email = '".trim($_POST['txtEmail'])."' ";
$objQuery1 = mysql_query($strSQL1);
$objResult1 = mysql_fetch_array($objQuery1);
if($objResult)
{
echo "username นี้มีผู้ใช้แล้ว!"."<a href='showregister.php'>กลับสู่หน้าสมัครสมาชิก</a>";
}
elseif($objResult1)
{
echo "email นี้มีผู้ใช้แล้ว!"."<a href='showregister.php'>กลับสู่หน้าสมัครสมาชิก</a>";
}
else
{
$strSQL = "INSERT INTO userinfo (username,password,name,mobile,email) VALUES ('".$_POST["txtUsername"]."',
'".$_POST["txtPassword"]."','".$_POST["txtName"]."','".$_POST["txtMobile"]."','".$_POST["txtEmail"]."')";
$objQuery = mysql_query($strSQL);
echo "สมัครสมาชิกเรียบร้อย!<br>"."<a href='index.php'>กลับสู่หน้า Login </a>";
}
mysql_close();
?>
</body>
</html>
|
|
|
|
|
Date :
2011-10-28 13:47:49 |
By :
momopat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ส่วนหน้า แสดงข้อมูล
Code (PHP)
<?php
include_once("function/register.php");// ดึง ฟังก์ชั่น connect database
$page =1;
$max = 20;
$start = ($page*$max)-$max;
$data = listAllRegis($start,$max);
mysql_query("SET NAMES UTF8");
?>
<head>
<title>Warn voyage :: ระบบแจ้งเตือนสำหรับผู้ใช้มือถือระบบปฏิบัติการ Android</title>
<meta http-equiv="Content-Type" content="text/html; charset= utf-8"></head>
<form action ="confirmdeleteuser.php" method="post">
<table border="1" width ="720" >
<tr>
<td colspan="3" width="10">
<a href="showsearchregisterform.php">ค้นหาข้อมูล</a>
</td>
<td colspan ="6" align = "right">
<a href="printregister.php" target="_blank">Print</a>
</td>
</tr>
<tr>
<td>ลำดับ</td>
<td>รหัส</td>
<td>ชื่อ</td>
<td>username</td>
<td>password</td>
<td>มือถือ</td>
<td>E-mail</td>
<td>แก้ไข</td>
<td>ลบ</td>
</tr>
<?php
$i=1;
foreach ($data as $row)
{
$id = $row["userid"];
$username = $row["username"];
$password = $row["password"];
$name = $row["name"];
$mobile = $row["mobile"];
$email = $row["email"];
?>
<tr>
<td><?php echo $i; ?></td>
<td><?php echo $id; ?> </td>
<td><?php echo $name; ?> </td>
<td><?php echo $username; ?> </td>
<td><?php echo $password; ?> </td>
<td><?php echo $mobile; ?> </td>
<td><?php echo $email; ?> </td>
<td>
<a href="showedituser.php?id=<?php echo $id; ?>">แก้ไขข้อมูล</a>
</td>
<td align="center"><a href="JavaScript:if(confirm('Confirm Delete?')==true){window.location='showconfirmdeleteuser.php?userid=<?=$id;?>';}">ลบข้อมูล</a></td>
</tr>
<?php $i++;
} ?>
</table>
</form>
ใครพอรู้ ช่วยทีน่ะค่ะ ข้อมูลที่แสดงออกมาจะเป็น เครื่องหมาย ???????????? หมดเลย
|
ประวัติการแก้ไข 2011-10-28 13:51:02
|
|
|
|
Date :
2011-10-28 13:49:16 |
By :
momopat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เขียนสิ่งที่ทำแล้วเป็นข้อๆออกมาให้ทีครับ .... ถ้าบอกว่าทุกอย่างทำแล้ว อาจจะมีหลงลืม ..... เพราะยังไม่ได้บอกว่าทำในสิ่งที่ผมตอบไปหรือยัง (ครบทุกไฟล์หรือไม่)
|
|
|
|
|
Date :
2011-10-28 19:33:54 |
By :
Songkram |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณ คุณ NOOM ค่ะ พอดีตอนนี้แก้ไขได้แล้ว เพราะว่าในตอนแรกใช้การ include ไฟล์ connect เข้ามา เลยลองเปลี่ยน connect ในหน้านั้นเอง เลยใช้ได้อ่ะค่ะ ไม่รู้ว่าเกี่ยวกันไหม แต่ยังไงขอบคุณมากๆเลยค่ะ
|
ประวัติการแก้ไข 2011-10-29 11:27:54
|
|
|
|
Date :
2011-10-29 11:26:42 |
By :
momopat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
งั้นลองอันนี้ นะ
<meta http-equiv=Content-Type content="text/html; charset=windows-874">
|
|
|
|
|
Date :
2011-10-29 15:35:14 |
By :
yuyu7878 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้ากับมาอ่านนะ
ในไฟล์ include ใส่นี่ mysql_query("SET CHARACTER SET TIS620") เข้าไปด้วยครับ
|
ประวัติการแก้ไข 2011-10-29 22:16:45
|
|
|
|
Date :
2011-10-29 22:16:24 |
By :
ozma |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|