<?php
mysql_connect("localhost","User เข้าฐานข้อมูล","รหัสผ่านเข้าฐานข้อมูล") or die (mysql_error("Can not connect Database"));
mysql_select_db("test_my_product") or die (mysql_error());
mysql_query("SET NAMES UTF8");
?>
test_my_product.sql Code (SQL)
-- phpMyAdmin SQL Dump
-- version 2.10.3
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Mar 15, 2013 at 10:33 AM
-- Server version: 5.0.51
-- PHP Version: 5.2.6
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Database: `test_my_product`
--
-- --------------------------------------------------------
--
-- Table structure for table `test_product`
--
CREATE TABLE `test_product` (
`test_product_no` int(11) NOT NULL auto_increment,
`test_product_type_no` int(11) NOT NULL,
`test_product_name` varchar(100) NOT NULL,
PRIMARY KEY (`test_product_no`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
--
-- Dumping data for table `test_product`
--
INSERT INTO `test_product` VALUES (1, 1, 'ปากกา');
INSERT INTO `test_product` VALUES (2, 2, 'มีด');
INSERT INTO `test_product` VALUES (3, 1, 'ดินสอ');
INSERT INTO `test_product` VALUES (4, 3, 'คีย์บอร์ด');
INSERT INTO `test_product` VALUES (5, 3, 'เมาส์');
INSERT INTO `test_product` VALUES (6, 1, 'ไม้บรรทัด');
INSERT INTO `test_product` VALUES (7, 1, 'ยางลบ');
-- --------------------------------------------------------
--
-- Table structure for table `test_product_type`
--
CREATE TABLE `test_product_type` (
`test_product_type_no` int(11) NOT NULL auto_increment,
`test_product_type` varchar(100) NOT NULL,
PRIMARY KEY (`test_product_type_no`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
--
-- Dumping data for table `test_product_type`
--
INSERT INTO `test_product_type` VALUES (1, 'เครื่องเขียน');
INSERT INTO `test_product_type` VALUES (2, 'อุปกรณ์ทำครัว');
INSERT INTO `test_product_type` VALUES (3, 'อุปกรณ์IT');