|
|
|
จากโค้ด insert นี้ ถ้าเราต้องการให้ ถ้าเพิ่มข้อมูลไม่สำเร็จ แสดง Error เป็น"กล่องข้อความเด้งขึ้นมา" ต้องแทรกโค้ดตรงไหนครับ |
|
|
|
|
|
|
|
คือของเดิม ถ้าบันทึกเสร็จ ผมก้ใส่ echoไว้ล่างสุด มันก็เด้งกล่องข้อความมา แต่ถ้าฐานข้อมูลerror มันก็ไม่แจ้งอยู่ดี หรือถ้าเอาออก มันก็แสดงerrorที่หน้าเว็บ ผมอยากให้มัน อเลิส ขึ้นแจ้งว่า "บันทึกข้อมูลไม่ได้ มีปัญหาที่...." อ่ะครับ
ขอถาม2ข้อนะครับ
1.โค้ดที่จะให้แจ้งเตือนเป็นหน้าต่าง เขียนsyntaxอย่างไร
2.เอาไปไว้ในส่วนไหนครับ
ขอบคุณมากครับ
Code (PHP)
<?php require_once('../Connections/conn.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(move_uploaded_file($_FILES["doc_file"]["tmp_name"],"../fileupload/doc/".$_FILES["doc_file"]["name"]))
{
echo "Copy/Upload Complete<br>"; }
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO tb_doc (doc_name, doc_nameen, doc_file) VALUES (%s, %s, %s)",
GetSQLValueString($_POST['doc_name'], "text"),
GetSQLValueString($_POST['doc_nameen'], "text"),
GetSQLValueString($_FILES['doc_file']['name'], "text"));
mysql_select_db($database_conn, $conn);
$Result1 = mysql_query($insertSQL, $conn) or die(mysql_error());
echo "<script type='text/javascript'>alert('เพิ่มเอกสารในระบบเรียบร้อยแล้วค่ะ')</script>";
echo '<script language=Javascript>top.location.href="../admin/doc_del.php";</script>';
Tag : PHP, MySQL, HTML/CSS, JavaScript, CakePHP
|
ประวัติการแก้ไข 2014-04-09 09:21:54
|
|
|
|
|
Date :
2014-04-09 09:17:49 |
By :
benzsara |
View :
4237 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็คงประมาณนี้
Code (PHP)
function Redirect($txt,$url){
echo '<script>';
echo "alert(\"$txt\");";
echo "window.location.href = '$url';";
echo '</script>';
}
<?php require_once('../Connections/conn.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(move_uploaded_file($_FILES["doc_file"]["tmp_name"],"../fileupload/doc/".$_FILES["doc_file"]["name"]))
{
echo "Copy/Upload Complete<br>"; }
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO tb_doc (doc_name, doc_nameen, doc_file) VALUES (%s, %s, %s)",
GetSQLValueString($_POST['doc_name'], "text"),
GetSQLValueString($_POST['doc_nameen'], "text"),
GetSQLValueString($_FILES['doc_file']['name'], "text"));
mysql_select_db($database_conn, $conn);
$Result1 = mysql_query($insertSQL, $conn) or die(mysql_error());
if($Result1){ #ถ้าบันทึกข้อมูลสำเร็จ
#แสดง popup
Redirect('เพิ่มเอกสารในระบบเรียบร้อยแล้วค่ะ','../admin/doc_del.php');
} else {
#แสดง popup
Redirect('เพิ่มเอกสารไม่ได้เนื่องจาก : '.mysql_error(),'../admin/doc_del.php');
}
|
|
|
|
|
Date :
2014-04-09 09:30:02 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เขียนสดหรือเปล่าอ่ะครับ มัน error Redirect เลยอ่ะครับ // เวลารันนะ ใส่เฉยๆไม่error
|
|
|
|
|
Date :
2014-04-09 15:15:42 |
By :
benzsara |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|