Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I wanted to insert image into my database , after I send in the forms.

it will be display based on the description instead of id. I'm following one tutorial which was showing how to insert based on id, which is the following code //Add this prouct into the database now

$sql = mysql_query ("INSERT INTO supermarket (category,subcategory,name,description,packaging,price)
VALUES ('$category','$subcategory','$product_name','$product_description','$product_package','$product_price')");




$pid= mysql_insert_id();
//place image in the folder
$newname = "$pid.jpg";
move_uploaded_file($_FILES['fileField']['tmp_name'],"images/$newname");
    header("location: inventory_list.php"); 
    exit();
}

now, i would like to change it to based on description. I not whether did I do it correctly.

   $pdes = mysql_insert_description();
    //place image in the folder
    $newname = "$pdes.jpg";
    move_uploaded_file($_FILES['fileField']['tmp_name'],"images/$newname");
        header("location: inventory_list.php"); 
        exit();
    }
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
345 views
Welcome To Ask or Share your Answers For Others

1 Answer

There is no mysql_insert_description() method. You don't need a mysql method here though, you already have the $product_description variable available to you.

It looks like you should be able to simply do this:

$newname = "$product_description.jpg";

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...