|
|
|
อยากเช็คค่าตอนเพิ่มข้อมูลครับว่า มีข้อมุลแล้วไม่สามารถเพิ่มข้อมูลได้ ต้องเขียนโค้ดยังไง หรือว่าไสตรงใหนได้ครับจากโค้ดตัวข้างล่างนี้ |
|
|
|
|
|
|
|
อยากเช็คค่าตอนเพิ่มข้อมูลครับว่า มีข้อมุลแล้วไม่สามารถเพิ่มข้อมูลได้ หรือถ้ายังไม่มีให้เพิ่มเข้าไป ต้องเขียนโค้ดยังไง หรือว่าไสตรงใหนได้ครับจากโค้ดตัวข้างล่างนี้ ขอบคุณครับ
<?php require_once('Connections/dbconn.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$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"] == "fadd")) {
$insertSQL = sprintf("INSERT INTO public_reg (`date`, date_number, pub_number, pub_name, version, location, status, cid, prename, firstname, lastname, `position`) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['date'], "text"),
GetSQLValueString($_POST['date_number'], "text"),
GetSQLValueString($_POST['pub_number'], "text"),
GetSQLValueString($_POST['pub_name'], "text"),
GetSQLValueString($_POST['version'], "text"),
GetSQLValueString($_POST['location'], "text"),
GetSQLValueString($_POST['status'], "text"),
GetSQLValueString($_POST['cid'], "text"),
GetSQLValueString($_POST['prename'], "text"),
GetSQLValueString($_POST['firstname'], "text"),
GetSQLValueString($_POST['lastname'], "text"),
GetSQLValueString($_POST['position'], "text")
);
mysql_select_db($database_dbconn, $dbconn);
$Result1 = mysql_query($insertSQL, $dbconn) or die(mysql_error());
}
Tag : PHP
|
|
|
|
|
|
Date :
2011-03-17 00:02:19 |
By :
aon |
View :
832 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อยากให้มันเช็คค่าจาก 'pub_number' กับ 'cid' 2ตัวนี้ครับพอไหวไหมครับ
|
|
|
|
|
Date :
2011-03-17 08:09:54 |
By :
aon |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รบกวนท่านเทพทั้งหลายช่วยตอบทีนะคับ ทำโปรเจ็คส่งอ.ไม่ทัน
|
|
|
|
|
Date :
2011-03-17 18:02:33 |
By :
Guest |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใส่ก่อน insert ข้อมูลลงฐานครับ
$sql = "select * from table where field1='".$_REQUEST['inputbox']."'";
$result=mysql_query($sql);
$rows =mysql_num_rows($result);
$i=0;
if($rows>$i){
echo "ชื่อซ้ำ";
}else{
ชื่อไม่ซ้ำ }}
|
|
|
|
|
Date :
2011-03-18 10:23:14 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|