 |
รบกวนสอบถามปัญหาภาษาไทยหน่อยครับ ผมใส่ code ตามตัวอย่างแล้วครับ แต่ผลการรันมีปัญหาครับ |
|
 |
|
|
 |
 |
|
มันไม่ได้เกี่ยวใดๆ กับภาษาไทยเลยนิครับ มันมีปัญหาเรื่อง $_SESSION
ลอง
Code (PHP)
<?php
ob_start();
session_start();
?>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<?php require_once('Connections/con_ecomm.php'); ?>
<?php
$currentPage = $_SERVER["PHP_SELF"];
mysql_select_db($database_con_ecomm, $con_ecomm);
$query_Recordset1 = "SELECT * FROM product WHERE prod_new = 0 and prod_show = 0";
$Recordset1 = mysql_query($query_Recordset1, $con_ecomm) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
mysql_select_db($database_con_ecomm, $con_ecomm);
$query_rs_title = "SELECT * FROM webconfig";
$rs_title = mysql_query($query_rs_title, $con_ecomm) or die(mysql_error());
$row_rs_title = mysql_fetch_assoc($rs_title);
$totalRows_rs_title = mysql_num_rows($rs_title);
|
 |
 |
 |
 |
Date :
2014-01-22 14:21:37 |
By :
arm8957 |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ย้าย
Code (PHP)
<?php session_start(); ?>
ไปไว้บนสุดครับ
การใช้ ob_start โดยไม่จำเป็นจะกระทบกับ server เปล่าๆ
|
 |
 |
 |
 |
Date :
2014-01-22 14:30:26 |
By :
itpcc |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณมากครับ error ข้างบนหายแล้วแต่ภาษาไทยยังเกิดปัญหาครับที่ผมลองทำตามที่ thaicreate สอนครับ
ผลการรัน ครับ

จากฐานข้อมูลครับ


ซึ่งผมทำตามคือในส่วนของ connecttion
<?php
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_con_ecomm = "localhost";
$database_con_ecomm = "varatchanu_npp";
$username_con_ecomm = "varatchanu_npp";
$password_con_ecomm = "te7ydhHO";
$con_ecomm = mysql_pconnect($hostname_con_ecomm, $username_con_ecomm, $password_con_ecomm) or trigger_error(mysql_error(),E_USER_ERROR);
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");
?>
และในส่วนหน้าที่มีปัญหาผมก็ว่างไว้ด้านบนครับ
<?php
ob_start();
session_start();
?>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<?php require_once('Connections/con_ecomm.php'); ?>
<?php
$currentPage = $_SERVER["PHP_SELF"];
mysql_select_db($database_con_ecomm, $con_ecomm);
$query_Recordset1 = "SELECT * FROM product WHERE prod_new = 0 and prod_show = 0";
$Recordset1 = mysql_query($query_Recordset1, $con_ecomm) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
mysql_select_db($database_con_ecomm, $con_ecomm);
$query_rs_title = "SELECT * FROM webconfig";
$rs_title = mysql_query($query_rs_title, $con_ecomm) or die(mysql_error());
$row_rs_title = mysql_fetch_assoc($rs_title);
$totalRows_rs_title = mysql_num_rows($rs_title);
จะแก้ปัญหาอย่างไหรดีครับ
รบกวนที่ครับ ขอบคุณครับ
|
 |
 |
 |
 |
Date :
2014-01-22 14:57:55 |
By :
่่ิnumboy_it |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ไฟล์ php เข้ารหัสเป็น UTF-8 หรือยังครับ

|
 |
 |
 |
 |
Date :
2014-01-22 15:33:15 |
By :
ping8252 |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ใช้ในโปรแกรม dreamwever ได้ไหมครับ
|
 |
 |
 |
 |
Date :
2014-01-22 15:53:33 |
By :
ีnumboy_it |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|