<?php session_start(); if($_SESSION["lang"] == "EN") { include("en.php"); } else { include("th.php"); } ?>
<?php $strTitle = "ยินดีต้อนรับเข้าสู่เว็บไซต์ของฉัน"; $strHome = "หน้าแรก"; $strService = "บริการของเรา"; $strAbout = "เกี่ยวกับเรา"; $strContact = "ติดต่อเรา"; //** สมมุติค่ามาจาก Database ที่ได้จากการ Query ***// $result["DETAIL_TH"] = "นี้คือเนื้อหาภาษาไทย"; $strDetail = $result["DETAIL_TH"]; ?>
<?php $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"]; ?>
<?php session_start(); $_SESSION["lang"] = $_GET["lang"]; session_write_close(); header("location:index.php"); ?>
<?php session_start(); if($_SESSION["lang"] == "EN") { include("en.php"); } else { include("th.php"); } ?> <html> <head> <title><?php echo $strTitle;?></title> <meta http-equiv="Content-Type" content="text/html; charset=windows-874"> </head> <body> <table width="452" border="1" cellpadding="1" cellspacing="1"> <tr> <td><?php echo $strHome;?></td> <td><?php echo $strService;?></td> <td><?php echo $strAbout;?></td> <td><?php echo $strContact;?></td> </tr> </table> <br> <br> <?php echo $strDetail;?> <br> <br> <br> <strong>Language</strong><br> <a href="change.php?lang=TH">TH</a> , <a href="change.php?lang=EN">EN</a> </body> </html>