Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > สอบถามเรื่อง insert ลงฐานข้อมูลแล้วมันบันทึกลงที่ละ 7 ตาราง ของคุงครับ



 

สอบถามเรื่อง insert ลงฐานข้อมูลแล้วมันบันทึกลงที่ละ 7 ตาราง ของคุงครับ

 



Topic : 095331



โพสกระทู้ ( 237 )
บทความ ( 0 )



สถานะออฟไลน์




สอบถามเรื่อง insert ลงฐานข้อมูลแล้วมันบันทึกลงที่ละ 7 ตาราง ของคุงครับ



Tag : PHP







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2013-05-17 08:18:18 By : dRufFy View : 832 Reply : 10
 

 

No. 1



โพสกระทู้ ( 1,819 )
บทความ ( 20 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Facebook

ถามอะไรล่ะครับ ประเด็นไหน อะไรคือคำถาม






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-05-17 08:20:44 By : cookiephp
 


 

No. 2



โพสกระทู้ ( 237 )
บทความ ( 0 )



สถานะออฟไลน์


คือเวลาผมบันทึกข้อมูลแต่ละครั้งมันจะบันทึกลงที่ละ 7 ข้อมูล ปรกติมันต้องมันทึกลงที่ละ 1 ข้อมูล งง ไหมครับเดียวผมเอาหน้าตารางให้ดู
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-05-17 08:51:59 By : dRufFy
 

 

No. 3



โพสกระทู้ ( 237 )
บทความ ( 0 )



สถานะออฟไลน์


dddddddd
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-05-17 09:05:14 By : dRufFy
 


 

No. 4



โพสกระทู้ ( 1,521 )
บทความ ( 2 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์
Facebook

เอา Code มาแปะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-05-17 09:26:02 By : Krungsri
 


 

No. 5



โพสกระทู้ ( 237 )
บทความ ( 0 )



สถานะออฟไลน์


<?php require_once('Connections/data1.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}

$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}

$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO re_data (`position`, name, address, Education, major, Exp, sarary) VALUES (%s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['position'], "text"),
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['address'], "text"),
GetSQLValueString($_POST['education'], "text"),
GetSQLValueString($_POST['major'], "text"),
GetSQLValueString($_POST['exp'], "text"),
GetSQLValueString($_POST['sarary'], "text"));

mysql_select_db($database_data1, $data1);
$Result1 = mysql_query($insertSQL, $data1) or die(mysql_error());

$insertGoTo = "show.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO re_data (`position`, name, address, major, sarary) VALUES (%s, %s, %s, %s, %s)",
GetSQLValueString($_POST['position'], "text"),
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['address'], "text"),
GetSQLValueString($_POST['education'], "text"),
GetSQLValueString($_POST['major'], "text"));

mysql_select_db($database_data1, $data1);
$Result1 = mysql_query($insertSQL, $data1) or die(mysql_error());

$insertGoTo = "show.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO re_data (`position`, name, address, Education, major, Exp, sarary) VALUES (%s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['position'], "text"),
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['address'], "text"),
GetSQLValueString($_POST['education'], "text"),
GetSQLValueString($_POST['major'], "text"),
GetSQLValueString($_POST['exp'], "text"),
GetSQLValueString($_POST['sarary'], "text"));

mysql_select_db($database_data1, $data1);
$Result1 = mysql_query($insertSQL, $data1) or die(mysql_error());

$insertGoTo = "show.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO re_data (`position`, name, address, Education, major, Exp, sarary) VALUES (%s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['position'], "text"),
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['address'], "text"),
GetSQLValueString($_POST['education'], "text"),
GetSQLValueString($_POST['major'], "text"),
GetSQLValueString($_POST['exp'], "text"),
GetSQLValueString($_POST['sarary'], "text"));

mysql_select_db($database_data1, $data1);
$Result1 = mysql_query($insertSQL, $data1) or die(mysql_error());

$insertGoTo = "show.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO re_data (`position`, name, address, Education, major, Exp, sarary) VALUES (%s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['position'], "text"),
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['address'], "text"),
GetSQLValueString($_POST['education'], "text"),
GetSQLValueString($_POST['major'], "text"),
GetSQLValueString($_POST['exp'], "text"),
GetSQLValueString($_POST['sarary'], "text"));

mysql_select_db($database_data1, $data1);
$Result1 = mysql_query($insertSQL, $data1) or die(mysql_error());

$insertGoTo = "show.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO re_data (`position`, name, address, Education, major, Exp, sarary) VALUES (%s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['position'], "text"),
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['address'], "text"),
GetSQLValueString($_POST['education'], "text"),
GetSQLValueString($_POST['major'], "text"),
GetSQLValueString($_POST['exp'], "text"),
GetSQLValueString($_POST['sarary'], "text"));

mysql_select_db($database_data1, $data1);
$Result1 = mysql_query($insertSQL, $data1) or die(mysql_error());

$insertGoTo = "show.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO re_data (`position`, name, address, Education, major, Exp, sarary) VALUES (%s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['position'], "text"),
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['address'], "text"),
GetSQLValueString($_POST['education'], "text"),
GetSQLValueString($_POST['major'], "text"),
GetSQLValueString($_POST['exp'], "text"),
GetSQLValueString($_POST['sarary'], "text"));

mysql_select_db($database_data1, $data1);
$Result1 = mysql_query($insertSQL, $data1) or die(mysql_error());

$insertGoTo = "show.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}

mysql_select_db($database_data1, $data1);
$query_Recordset1 = "SELECT name FROM re_data";
$Recordset1 = mysql_query($query_Recordset1, $data1) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
<!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=windows-874" />
<title>Untitled Document</title>
</head>

<body>
<form id="form1" name="form1" method="POST" action="<?php echo $editFormAction; ?>">
<table width="602" border="1">
<tr>
<td colspan="2"><div align="center">
<p>&nbsp;</p>
<p><strong>สมัครงาน</strong></p>
<p>&nbsp;</p>
</div></td>
</tr>
<tr>
<td width="140"><strong>ตำแหน่ง</strong></td>
<td width="446"><strong>
<select name="position" id="position">
<option>เลือก</option>
<option>โปรแกรมเมอร์</option>
<option>นักวิชาการเกษตร</option>
<option>วิศวการยาง</option>
<option>จป วิชาชีพ</option>
</select>
</strong></td>
</tr>
<tr>
<td>ชื่อ-นามสกุล</td>
<td><label for="name2"></label>
<input name="name" type="text" /></td>
</tr>
<tr>
<td>ที่อยู่</td>
<td><label for="address2"></label>
<textarea name="address" id="address2" cols="45" rows="5"></textarea></td>
</tr>
<tr>
<td>ระดับการศึกษา</td>
<td><label for="education2"></label>
<select name="education" id="education2">
<option>ม.6</option>
<option>ปวช.</option>
<option>ปวส.</option>
<option>ปริญญาตรี</option>
<option>ปริญญาโท</option>
</select>
สาขา
<label for="major2"></label>
<input type="text" name="major" /></td>
</tr>
<tr>
<td>ประสบการณ์ทำงาน</td>
<td><label for="exp2"></label>
<textarea name="exp" id="exp2" cols="45" rows="5"></textarea></td>
</tr>
<tr>
<td>เงินเดือน</td>
<td><label for="sarary"></label>
<input type="text" name="sarary" /></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="save" id="save" value="บันทึก" />
<input type="reset" name="reset" id="reset" value="รีเฟรส" /></td>
</tr>
</table>
<input type="hidden" name="MM_insert" value="form1" />
</form>
</body>
</html>
<?php
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-05-17 09:48:40 By : dRufFy
 


 

No. 6



โพสกระทู้ ( 237 )
บทความ ( 0 )



สถานะออฟไลน์


เยอะไปหน่อยนะครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-05-17 09:50:51 By : dRufFy
 


 

No. 7



โพสกระทู้ ( 464 )
บทความ ( 0 )



สถานะออฟไลน์
Twitter Facebook Hi5

ขออนุญาติแปะให้อ่านง่ายน่ะ
Code (PHP)
<?php require_once('Connections/data1.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}

$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break; 
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}

$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO re_data (`position`, name, address, Education, major, Exp, sarary) VALUES (%s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['position'], "text"),
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['address'], "text"),
GetSQLValueString($_POST['education'], "text"),
GetSQLValueString($_POST['major'], "text"),
GetSQLValueString($_POST['exp'], "text"),
GetSQLValueString($_POST['sarary'], "text"));

mysql_select_db($database_data1, $data1);
$Result1 = mysql_query($insertSQL, $data1) or die(mysql_error());

$insertGoTo = "show.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO re_data (`position`, name, address, major, sarary) VALUES (%s, %s, %s, %s, %s)",
GetSQLValueString($_POST['position'], "text"),
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['address'], "text"),
GetSQLValueString($_POST['education'], "text"),
GetSQLValueString($_POST['major'], "text"));

mysql_select_db($database_data1, $data1);
$Result1 = mysql_query($insertSQL, $data1) or die(mysql_error());

$insertGoTo = "show.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO re_data (`position`, name, address, Education, major, Exp, sarary) VALUES (%s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['position'], "text"),
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['address'], "text"),
GetSQLValueString($_POST['education'], "text"),
GetSQLValueString($_POST['major'], "text"),
GetSQLValueString($_POST['exp'], "text"),
GetSQLValueString($_POST['sarary'], "text"));

mysql_select_db($database_data1, $data1);
$Result1 = mysql_query($insertSQL, $data1) or die(mysql_error());

$insertGoTo = "show.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO re_data (`position`, name, address, Education, major, Exp, sarary) VALUES (%s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['position'], "text"),
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['address'], "text"),
GetSQLValueString($_POST['education'], "text"),
GetSQLValueString($_POST['major'], "text"),
GetSQLValueString($_POST['exp'], "text"),
GetSQLValueString($_POST['sarary'], "text"));

mysql_select_db($database_data1, $data1);
$Result1 = mysql_query($insertSQL, $data1) or die(mysql_error());

$insertGoTo = "show.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO re_data (`position`, name, address, Education, major, Exp, sarary) VALUES (%s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['position'], "text"),
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['address'], "text"),
GetSQLValueString($_POST['education'], "text"),
GetSQLValueString($_POST['major'], "text"),
GetSQLValueString($_POST['exp'], "text"),
GetSQLValueString($_POST['sarary'], "text"));

mysql_select_db($database_data1, $data1);
$Result1 = mysql_query($insertSQL, $data1) or die(mysql_error());

$insertGoTo = "show.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO re_data (`position`, name, address, Education, major, Exp, sarary) VALUES (%s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['position'], "text"),
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['address'], "text"),
GetSQLValueString($_POST['education'], "text"),
GetSQLValueString($_POST['major'], "text"),
GetSQLValueString($_POST['exp'], "text"),
GetSQLValueString($_POST['sarary'], "text"));

mysql_select_db($database_data1, $data1);
$Result1 = mysql_query($insertSQL, $data1) or die(mysql_error());

$insertGoTo = "show.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO re_data (`position`, name, address, Education, major, Exp, sarary) VALUES (%s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['position'], "text"),
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['address'], "text"),
GetSQLValueString($_POST['education'], "text"),
GetSQLValueString($_POST['major'], "text"),
GetSQLValueString($_POST['exp'], "text"),
GetSQLValueString($_POST['sarary'], "text"));

mysql_select_db($database_data1, $data1);
$Result1 = mysql_query($insertSQL, $data1) or die(mysql_error());

$insertGoTo = "show.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}

mysql_select_db($database_data1, $data1);
$query_Recordset1 = "SELECT name FROM re_data";
$Recordset1 = mysql_query($query_Recordset1, $data1) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
<!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=windows-874" />
<title>Untitled Document</title>
</head>

<body>
<form id="form1" name="form1" method="POST" action="<?php echo $editFormAction; ?>">
<table width="602" border="1">
<tr>
<td colspan="2"><div align="center">
<p>&nbsp;</p>
<p><strong>สมัครงาน</strong></p>
<p>&nbsp;</p>
</div></td>
</tr>
<tr>
<td width="140"><strong>ตำแหน่ง</strong></td>
<td width="446"><strong>
<select name="position" id="position">
<option>เลือก</option>
<option>โปรแกรมเมอร์</option>
<option>นักวิชาการเกษตร</option>
<option>วิศวการยาง</option>
<option>จป วิชาชีพ</option>
</select>
</strong></td>
</tr>
<tr>
<td>ชื่อ-นามสกุล</td>
<td><label for="name2"></label>
<input name="name" type="text" /></td>
</tr>
<tr>
<td>ที่อยู่</td>
<td><label for="address2"></label>
<textarea name="address" id="address2" cols="45" rows="5"></textarea></td>
</tr>
<tr>
<td>ระดับการศึกษา</td>
<td><label for="education2"></label>
<select name="education" id="education2">
<option>ม.6</option>
<option>ปวช.</option>
<option>ปวส.</option>
<option>ปริญญาตรี</option>
<option>ปริญญาโท</option>
</select>
สาขา
<label for="major2"></label>
<input type="text" name="major" /></td>
</tr>
<tr>
<td>ประสบการณ์ทำงาน</td>
<td><label for="exp2"></label>
<textarea name="exp" id="exp2" cols="45" rows="5"></textarea></td>
</tr>
<tr>
<td>เงินเดือน</td>
<td><label for="sarary"></label>
<input type="text" name="sarary" /></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="save" id="save" value="บันทึก" />
<input type="reset" name="reset" id="reset" value="รีเฟรส" /></td>
</tr>
</table>
<input type="hidden" name="MM_insert" value="form1" />
</form>
</body>
</html>
<?php

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-05-17 10:07:45 By : dekkuza
 


 

No. 8



โพสกระทู้ ( 464 )
บทความ ( 0 )



สถานะออฟไลน์
Twitter Facebook Hi5

พ่อคุณเอ้ย โค๊ด insert ซ้ำกัน 7 ตัว T_T ลบให้เหลือ ตัวเดียวพอ
Code (PHP)
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO re_data (`position`, name, address, Education, major, Exp, sarary) VALUES (%s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['position'], "text"),
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['address'], "text"),
GetSQLValueString($_POST['education'], "text"),
GetSQLValueString($_POST['major'], "text"),
GetSQLValueString($_POST['exp'], "text"),
GetSQLValueString($_POST['sarary'], "text"));

mysql_select_db($database_data1, $data1);
$Result1 = mysql_query($insertSQL, $data1) or die(mysql_error());

$insertGoTo = "show.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}


ให้เป็นแบบนี้
Code (PHP)
<?php require_once('Connections/data1.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}

$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break; 
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}

$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO re_data (`position`, name, address, Education, major, Exp, sarary) VALUES (%s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['position'], "text"),
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['address'], "text"),
GetSQLValueString($_POST['education'], "text"),
GetSQLValueString($_POST['major'], "text"),
GetSQLValueString($_POST['exp'], "text"),
GetSQLValueString($_POST['sarary'], "text"));

mysql_select_db($database_data1, $data1);
$Result1 = mysql_query($insertSQL, $data1) or die(mysql_error());

$insertGoTo = "show.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}


mysql_select_db($database_data1, $data1);
$query_Recordset1 = "SELECT name FROM re_data";
$Recordset1 = mysql_query($query_Recordset1, $data1) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
<!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=windows-874" />
<title>Untitled Document</title>
</head>

<body>
<form id="form1" name="form1" method="POST" action="<?php echo $editFormAction; ?>">
<table width="602" border="1">
<tr>
<td colspan="2"><div align="center">
<p>&nbsp;</p>
<p><strong>สมัครงาน</strong></p>
<p>&nbsp;</p>
</div></td>
</tr>
<tr>
<td width="140"><strong>ตำแหน่ง</strong></td>
<td width="446"><strong>
<select name="position" id="position">
<option>เลือก</option>
<option>โปรแกรมเมอร์</option>
<option>นักวิชาการเกษตร</option>
<option>วิศวการยาง</option>
<option>จป วิชาชีพ</option>
</select>
</strong></td>
</tr>
<tr>
<td>ชื่อ-นามสกุล</td>
<td><label for="name2"></label>
<input name="name" type="text" /></td>
</tr>
<tr>
<td>ที่อยู่</td>
<td><label for="address2"></label>
<textarea name="address" id="address2" cols="45" rows="5"></textarea></td>
</tr>
<tr>
<td>ระดับการศึกษา</td>
<td><label for="education2"></label>
<select name="education" id="education2">
<option>ม.6</option>
<option>ปวช.</option>
<option>ปวส.</option>
<option>ปริญญาตรี</option>
<option>ปริญญาโท</option>
</select>
สาขา
<label for="major2"></label>
<input type="text" name="major" /></td>
</tr>
<tr>
<td>ประสบการณ์ทำงาน</td>
<td><label for="exp2"></label>
<textarea name="exp" id="exp2" cols="45" rows="5"></textarea></td>
</tr>
<tr>
<td>เงินเดือน</td>
<td><label for="sarary"></label>
<input type="text" name="sarary" /></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="save" id="save" value="บันทึก" />
<input type="reset" name="reset" id="reset" value="รีเฟรส" /></td>
</tr>
</table>
<input type="hidden" name="MM_insert" value="form1" />
</form>
</body>
</html>
<?php




ประวัติการแก้ไข
2013-05-17 10:13:21
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-05-17 10:11:41 By : dekkuza
 


 

No. 9



โพสกระทู้ ( 237 )
บทความ ( 0 )



สถานะออฟไลน์


ขอลคุงครับ เจอแล้ว อิๆๆๆ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-05-17 10:27:20 By : dRufFy
 


 

No. 10



โพสกระทู้ ( 237 )
บทความ ( 0 )



สถานะออฟไลน์


เดียวมีให้รบกวนอีกเยอะนะครับ อิๆๆๆ ปล.กินไปทำไป+เมาเลย 555+
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-05-17 10:29:22 By : dRufFy
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : สอบถามเรื่อง insert ลงฐานข้อมูลแล้วมันบันทึกลงที่ละ 7 ตาราง ของคุงครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 04
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่