<form action="index.php" method="post" enctype="multipart/form-data">
File: <input type="file" name="image"><input type="submit" value="Upload">
</form>
<?php
//connect to db
mysql_connect("localhost","root","")or die(mysql_error());
mysql_select_db ("databaseimage")or die (mysql_error());
@$file =$_FILES['image']['tmp_name'];//kjo eshte e lidhur me <input type="file" name="image"> 
if (!isset($file))
echo ("Please select an image");
else {
$image= addslashes(file_get_contents ($_FILES['image'] ['tmp_name']));
$image_name = addslashes($_FILES['image']['name']);
$image_size = getimagesize ($_FILES['image'] ['tmp_name']);
if(@$image_size==FALSE)
echo "Nuk eshte imazh ky or bir   hahahahah";
else
{
if(!$insert =mysql_query ("INSERT INTO store VALUES ('','$image_name','$image')"))
 echo ('Pati problem ne ngarkim');
 else {
 $lastid = mysql_insert_id ();
 echo "Image uploaded.<p />Your image:<p /><img src=get.php?id=$lastid>";
}
}
}
?>

Recommended Answers

All 8 Replies

<?php
mysql_connect("localhost","root","")or die(mysql_error());
mysql_select_db ("databaseimage")or die (mysql_error());
$id = addslashes ($_REQUEST['id']);
$image = mysql_query ("SELECT * FROM store WHERE id=$id");
$image = mysql_fetch_assoc ($image);
$image = $image ['image'];
header ("Content-type:image/jpeg");
echo $image;
?>



when i click upload button id doesnt show the image i have fallow the youtube video and i can find my error iinside the code
can somebody help me

What are you trying to do: Explain in details what you are trying to do .

How are you trying to do it: Explain how you are trying to archive what ever you are trying to do.

Where is the problem / question: After the above two steps explain where is the problem you deal or the question you have.

it is a upload code,when i chose the image i wont to upload it doesnt look like an image it look a litle icon

Member Avatar for diafol

icon as in an icon of the image itself or a 'missing image icon'?

Capture57

This post has no text-based content.

this is the image when i click upload button the image is in the desktop

have you seen the image i have uploaded??

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.