Jump to content

Uploading and downloading images


jbille

Recommended Posts

I have a form which uploads the following information into mysql:
name
number
description
price
image

However I am having trouble uploading the image and then viewing the image on a page with the rest of these results.  I've looked but have not been able to find any help on this.  Can anyone give me suggestions.
Link to comment
Share on other sites

[code]$name = $_POST['name'];
$number = $_POST['number'];
$price = $_POST['price'];
$order = $_POST['order'];
$category = $_POST['category'];
$description = $_POST['description'];
$picture = $_POST['picture'];


if((empty($name)) || (empty($number)) || (empty($price))
|| (empty($category)) || (empty($description)))
{
echo "Please <a href=\"addproduct.html\">go back</a> and fill in the following information: ";
if(empty($name)) echo ("Product Name");
if(empty($number)) echo ("Product Number");
if(empty($price)) echo ("Product Price");
if(empty($category)) echo ("Category must be picked");
if(empty($description)) echo ("Product Description");
exit(1);
}

$data = addslashes(fread(fopen($picture, "r"), filesize($picture)));

$link = mysql_connect(localhost, $user, $pass);
if (!$link) {
  die('Not connected : ' . mysql_error());
}
mysql_select_db($dbname, $link) or die("Unable to select database");
$query ="INSERT INTO products (category, name, number, price, description, picture) VALUES ('$category', '$name', '$number', '$price', '$description', '$data')";
mysql_query($query) or die('Error, query failed, Call Jimmy (330)268-9271');
mysql_close($link);[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.