|
|
|
รบกวนช่วยดูโค้ดให้หน่อยครับแก้มาหลายรอบก็ไม่ได้เลยครับ |
|
|
|
|
|
|
|
Code (PHP)
<? session_start(); ?>
<!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" enctype="multipart/form-data"/>
<title>Untitled Document</title>
</head>
<body>
<?php
echo $sql_photo="select stu_photo from dataalumni where lowID='$_POST[lowID]'";
$query_photo=mysql_query($sql_photo);
$record_photo=mysql_fetch_array($query_photo);
$dc_document_name2=$record_photo[stu_photo];
"photo_upload/".$dc_document_name2;
$dc_document=$_FILES[stu_photo][tmp_name];
$dc_document_name=$_FILES[stu_photo][name];
$array_lastname=explode(".",$dc_document_name);
$c=count($array_lastname)-1;
$lastname=strtolower($array_lastname[$c]);
if(!$dc_document){
$dc_document_name=$record_photo[stu_photo];
}
else{
if($lastname=='jpg' or $lastname=='gif' or $lastname=='png'){
$dc_document_name="cpetc_".time().".".$lastname;
copy($dc_document,"photo_upload/".$dc_document_name);
unlink($dc_document);
@unlink("photo_upload/".$dc_document_name2);
}
}
include "ConnectDB.php";
$objDB = mysql_select_db("register");
$dc_document_name23=500;
echo $dc_document_name23;
echo $strSQL = " UPDATE dataalumni SET ";
echo $strSQL .=",stu_name = '".$_POST["txtname"]."' ";
$strSQL .=",stu_education = '".$_POST["txteducation"]."' ";
$strSQL .=",stu_course = '".$_POST["txtcourse"]."' ";
$strSQL .=",stu_model = '".$_POST["txtmodel"]."' ";
$strSQL .=",stu_work = '".$_POST["txtwork"]."' ";
$strSQL .=",stu_address = '".$_POST["txtaddress"]."' ";
$strSQL .=",stu_tell = '".$_POST["txttell"]."' ";
$strSQL .=",stu_email = '".$_POST["txtemail"]."' ";
$strSQL .=",stu_facebook = '".$_POST["txtfacebook"]."' ";
echo $strSQL .=",stu_photo= '".$dc_document_name."' ";
$strSQL .="WHERE lowID = '".$_GET["lowID"]."' ";
exit;
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "<center>บันทึกข้อมูลแล้ว...</center> <meta http-equiv='refresh' content='1;url=Index.php?page=showdata' />";
}
else
{
echo "ไม่สามารถบันทึกข้อมูลได้</center> <meta http-equiv='refresh' content='1;url=Index.php?page=showdata' />";
}
mysql_close($objConnect);
?>
</body>
</html>
ส่วนที่แจ้ง Error
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\Engineer\showdatasave.php on line 13
500 UPDATE dataalumni SET UPDATE dataalumni SET ,stu_name = 'k;lk' UPDATE dataalumni SET ,stu_name = 'k;lk' ,stu_education = ';lk;l' ,stu_course = '' ,stu_model = '1' ,stu_work = '' ,stu_address = '' ,stu_tell = '' ,stu_email = '' ,stu_facebook = '' ,stu_photo= ''
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2015-08-05 11:46:10 |
By :
lattapol |
View :
644 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
format SQL ผิดครับ
41.
echo $strSQL .=",stu_name = '".$_POST["txtname"]."' ";
|
|
|
|
|
Date :
2015-08-05 11:49:48 |
By :
CasanovaKung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41.echo $strSQL .=",stu_name = '".$_POST["txtname"]."' ";
สีแดงเกินมาครับ ไม่ต้องแก้บันทัดอื่นนะครับ
เคยมีคนถามแบบนี้ บอกไปบันทัดเดียว เอาไปประยุกต์ทุกบันทัดเลย 555666 เออเร่อร์เหมือนเดิม
|
|
|
|
|
Date :
2015-08-05 11:50:38 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Error เหมือนเดิมเลยครับ
|
|
|
|
|
Date :
2015-08-05 12:02:04 |
By :
lattapol |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12.$query_photo=mysql_query($sql_photo) or die( mysql_error() . "<br>$sql_photo");
if( msyql_num_rows($query_photo)==0) exit( 'num rows is zero');
13.$record_photo=mysql_fetch_array($query_photo);
เช็คก่อนว่าได้รับ result มาหรือเปล่า
|
|
|
|
|
Date :
2015-08-05 12:41:58 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|