คือว่าผมทำแล้วมันไม่เก็บข้อมูลงฐานข้อมูลเลยครับ
มันบอก INSERT มีข้อผิดพลาดเกิดขึ้น
ผมต้องแก้ที่ไหนครับ
ในฐานข้อมูลมันไม่เป็นภาษาไทยครับ
ถ้าผมต้องการสร้างหน้าดึงข้อมูลออกมาโชว์จะต้องเขียนโค้ดอย่างไรครับหน้ากรอกแบบฟร์อม
http://isanthai.com/fromonline/ 
<html>
<head>
<title>ผู้ใช้งานอินเตอร์เน็ตใช้ค่ายไหน</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<style type="text/css">
<!--
#apDiv1 {
position:absolute;
width:171px;
height:37px;
z-index:1;
left: 165px;
top: 11px;
}
body,td,th {
font-size: 18px;
font-family: Tahoma, Geneva, sans-serif;
}
h1,h2,h3,h4,h5,h6 {
font-family: Tahoma, Geneva, sans-serif;
}
-->
</style>
</head>
<body>
<p> </p>
<center>
<strong><font size="5"> ผู้ใช้งานอินเตอร์เน็ตใช้เน็ตค่ายไหน</font></strong>
</center>
<center><form action="add.php" method="post">
<table width="439" border="0" cellspacing="1" cellpadding="3">
<tr bgcolor="#0099FF">
<td><font size="2" face="Tahoma, MS Sans Serif"><strong>ชื่อ
:</strong></font></div></td>
<td><font size="2" face="Tahoma, MS Sans Serif">
<input name="Name" type="text" id="Name" size="30" maxlength="30">
</font></td>
</tr>
<tr bgcolor="#0099FF">
<td>ใช้เน็ตค่ายไหน</td>
<td><font size="2" face="Tahoma, MS Sans Serif">
<input name="ISP" type="text" id="ISP" size="30" maxlength="30">
</font></td>
</tr>
<tr bgcolor="#0099FF">
<td>อายุ
<td><font size="2" face="Tahoma, MS Sans Serif">
<input name="Age" type="text" id="Age" size="30" maxlength="30">
</font></td>
</tr>
<tr bgcolor="#0099FF">
<td>จังหวัด</td>
<td><font size="2" face="Tahoma, MS Sans Serif">
<input name="Province" type="text" id="Province" size="30" maxlength="30">
</font></td>
</tr>
<tr bgcolor="#0099FF">
<td>บ้านนอกหรือในเมือง</td>
<td><font size="2" face="Tahoma, MS Sans Serif">
<input name="Country_City" type="text" id="Country_City" size="30" maxlength="30">
</font></td>
</tr>
<tr bgcolor="#0099FF">
<td>เหตุผลที่ใช้</td>
<td><font size="2" face="Tahoma, MS Sans Serif">
<input name="Why" type="text" id="Why" size="30" maxlength="30">
</font></td>
</tr>
<tr bgcolor="#0099FF">
<td> </td>
<td> </td>
</tr>
<tr bgcolor="#0099FF">
<td> </td>
<td><input type="submit" name="Submit" value=" เพิ่มลงฐานข้อมูล">
<label>
<input type="reset" name="Reset" id="button" value="ลบข้อมูล">
</label></td>
</tr>
</table>
</form></center>
</body>
</html>
หน้า add.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd 
">
<html xmlns="
http://www.w3.org/1999/xhtml 
">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?php
$hostname = "localhost";
$username = "-----มีแล้ว-------";
$password = "-----มีแล้ว-------";
$dbname = "-----มีแล้ว---------";
$conn = mysql_connect( $hostname, $username, $password );
if ( ! $conn )
die ( "ไม่สามารถติดต่อกับ MySQL ได้" );
mysql_select_db ( $dbname, $conn )
or die ( "ไม่สามารถเลือกฐาน ข้อมูล isanthai_fon ได้" );
$SQLTXT = "INSERT INTO NET ( Name,ISP,Age,Province,Country_City,Why ) ";
$SQLTXT .= "VALUES ( '$Name','$ISP','$Age','$Province','$Country_City','$Why' ) ";
mysql_query( $SQLTXT, $conn )
or die ( "INSERT มีข้อผิดพลาดเกิดขึ้น" ) . mysql_error();
mysql_close ( $conn );
?>
<p align="center"& amp; gt;<font size="2" face="Tahoma, MS Sans& nbsp;Serif"><strong>เพิ่มข้อมูลลงฐานข้อมูล แล้ว</strong></font></p>
<p align="center"& gt;<font size="2" face="Tahoma, MS Sans& nbsp;Serif"><a href="code14_022.php">คลิกที่นี่เพื่อไป ดู</a></font></p>
</body>
</html>
ขอบคุณมากนะครับ