|
|
|
ติดโค้ดsql คับ my_free_result ช่วยผมหน่อยค้าบ ผิดพลาด ... ไม่สามารถบันทึกข้อมูลได้ กุณากรอกรายละเอียดใหม่อีกครั้ง!! |
|
|
|
|
|
|
|
Code (PHP)
<?
if(!isset($_SESSION)) {
session_start();
}
include("connect.php");
if(trim($_FILES["book_pic"]["tmp_name"]) != "")
{
$images = $_FILES["book_pic"]["tmp_name"];
$new_images = $_FILES["book_pic"]["name"];
//copy($_FILES["fileUpload"]["tmp_name"],"MyResize/".$_FILES["fileUpload"]["name"]);
$width=130; //*** Fix Width & Heigh (Autu caculate) ***//
$size=GetimageSize($images);
$height= 150;//round($width*$size[1]/$size[0]);
$images_orig = ImageCreateFromJPEG($images);
$photoX = ImagesX($images_orig);
$photoY = ImagesY($images_orig);
$images_fin = ImageCreateTrueColor($width, $height);
ImageCopyResampled($images_fin, $images_orig, 0, 0, 0, 0, $width+1, $height+1, $photoX, $photoY);
ImageJPEG($images_fin,"picture/".$new_images);
ImageDestroy($images_orig);
ImageDestroy($images_fin);
$usr=$_POST["usr_name"];
$pwd=$_POST["usr_pass"];
$name=$_POST["book_name"];
$author=$_POST["book_author"];
$isbn=$_POST["book_ISBN"];
$com=$_POST["book_com"];
$type=$_POST["book_type"];
$price=$_POST["price_book"];
$sql= "INSERT into book (pro_name,pro_author,pro_ISBN,pro_com,pro_type,price_pro,pro_pic) VALUES ('$name','$author','$isbn','$com','$type','$price',$new_images')";
echo $sql;
$result=mysql_query($sql);
}
else if($result==true) {
echo "เพิ่มข้อมูลหนังสือเรียบร้อย !!!";
} else {
echo "ผิดพลาด ... ไม่สามารถบันทึกข้อมูลได้ กุณากรอกรายละเอียดใหม่อีกครั้ง!!!";
}
mysql_free_result($result);
mysql_close($conn);
?>
<script language="javascript">
//window.location.href="summitaddbook.php";
</script>
อันนี้โค้ดเชื่อต่อเบสคับ มันผิดตรง my_free_result อะคับ
Tag : PHP, MySQL, HTML/CSS, JavaScript
|
|
|
|
|
|
Date :
2010-10-13 19:16:21 |
By :
napatpom |
View :
684 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เขียนโค๊ดผิด
else if($result==true) {
มันจะมี $result ได้ไงในเมื่อมันอยู่เงื่อนไขก่อนหน้านี้
$result=mysql_query($sql);
ที่มัน error เพราะมันไม่มี resource ที่ผมว่านั่นแหละ
|
|
|
|
|
Date :
2010-10-13 19:19:57 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตามท่าน PlaKriM ครับ
|
|
|
|
|
Date :
2010-10-14 11:01:27 |
By :
juder |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|