Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
346 views
in Technique[技术] by (71.8m points)

php - inserting image base on description

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

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

1 Reply

0 votes
by (71.8m points)

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";

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...