<?php
$host="localhost";
$user="root";
$pass="root";
$dbname="ชื่อฐานข้อมู";
//เชื่อมต่อฐานข้อมูล
$con=mysql_connect($host,$user,$pass) or die("<font color='red'><b>Err: Connect Db $dbname</b></font>");
//ตั้งค่าภาษาไทย
$cs1="SET character_set_connection=tis620";
mysql_query($cs1) or die("Err: set connection");
$cs2="SET character_set_results=tis620";
mysql_query($cs2) or die("Err: set results");
$cs3="SET character_set_client=tis620";
mysql_query($cs3) or die("Err: set client");
?>