วีธีแบบก็อบปี้ สำหรับภาษาไทย public_html/ ...images/ ...index.php ...aboutus.php ... สำหรับภาษาอังกฤษก็ก็อบภาษาไทยทั้งหมดมาไว้ในภาษาอังกฤษ ...en/ ...images/ ...index.php ...aboutus.php ... url:หน้า index.php ก็จะเป็น <a href='www.xx.com/">th</a> | <a href='www.xx.com/en">en</a> วิธีแบบดึงจากฐานข้อมูล public_html/ ...imgaes/ ...lang/ .......en/ ...........lang.inc.php .......th/ ...........lang.ing.php ...index.php url:หน้า index.php ก็จะเป็น <a href='index.php?l=th>th</a> | <a href='index.php?l=en>en</a> แล้วก็ทำการ ตรวจสอบคุกกี้ภาษา ว่าตอนนี้ผู้ใช้เลือกภาษาอะไรอยู่ เลือกไทยก็ include ไฟล์คอนฟิกภาษาไทย แต่ถ้ายังไม่เคยเลือกก็ไปตรวจสอบว่ามีการส่งค่า get ตัวแปร l หรือไม่ ถ้า l ถูกให้ค่าก็ include("lang/".$_GET["l"]."/lang.inc.php"); ถ้าไม่ถูกให้ค่าก็ให้ include ค่าดีฟอลเข้าไป จะเป็นภาษาอะไรก็ตามใจ
<a href='www.xx.com/en">English vertion</a>
<html> <head></head> <body> <? include("header.php");?> <form method="post" action=""> อีเมล์ <input type="text" name="email"> รหัสผ่าน <input type="password" name="pass"> <input type="submit" name="login" value="เข้าสู่ระบบ"> </form> </body> </html>
<a href='www.xx.com/">Thai vertion</a>
<html> <head></head> <body> <? include("header.php");?> <form method="post" action=""> Email <input type="text" name="email"> Password <input type="password" name="pass"> <input type="submit" name="login" value="Login"> </form> </body> </html>
$conf["lang"]="th"; $conf["name"]="ชื่อ"; $conf["email"]="อีเมล์"; $conf["password"]="รหัสผ่าน"; $conf["login"]="ล็อกอิน"; $conf["logout"]="ออกจากระบบ"; ..........ect. .......
$conf["lang"]="en"; $conf["name"]="Name"; $conf["email"]="Email"; $conf["password"]="Password"; $conf["login"]="Login"; $conf["logout"]="Logout"; ..........ect. .......
<a href='www.xx.com/?l=th">th</a> | <a href='www.xx.com/?l=en">en</a>
<html> <head></head> <body> <? include("header.php"); if($_GET["l"]!=null){ include("lang/".$_GET["l"]."/config.inc.php"); // set cokie langs = $_GET["l"] }else if($_COOKIE["langs"]!=""){ include("lang/".$_COOKIE["langs"]."/config.inc.php"); }else{ include("lang/th/config.inc.php"); // set cokie langs = th } ?> <form method="post" action=""> <?=$conf["email"];?> <input type="text" name="email"> <?=$conf["password"];?> <input type="password" name="pass"> <input type="submit" name="login" value="<?=$conf["login"];?>"> </form> </body> </html>
$field_lang=$_COOKIE["langs"]; $sql="select * from article"; #query #while loop echo $rs["id"]; echo $rs["subject_".$field_lang]; echo $rs["detail_".$field_lang]; echo $rs["create_date"]; #End loop
<? session_start(); if($_SESSION["lang"] == "EN") { include("en.php"); } else { include("th.php"); } ?>
<? $strTitle = "ยินดีต้อนรับเข้าสู่เว็บไซต์ของฉัน"; $strHome = "หน้าแรก"; $strService = "บริการของเรา"; $strAbout = "เกี่ยวกับเรา"; $strContact = "ติดต่อเรา"; //** สมมุติค่ามาจาก Database ที่ได้จากการ Query ***// $result["DETAIL_TH"] = "นี้คือเนื้อหาภาษาไทย"; $strDetail = $result["DETAIL_TH"]; ?>
<? $strTitle = "Welcome to My Web Site"; $strHome = "Home"; $strService = "Service"; $strAbout = "About Us"; $strContact = "Contact Us"; //** สมมุติค่ามาจาก Database ที่ได้จากการ Query ***// $result["DETAIL_EN"] = "This is content English"; $strDetail = $result["DETAIL_EN"]; ?>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง