954,568 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

How to insert image in directory using mySQL

how do i insert a image into a directory through MySQL, rename it, generate a link and upload the generated link in MySQL......???

anyhelp will be really apprietiated....

and if its a tutorial its the best way out, i'm not good at PHP.....

plz its urgent for me..

thx alot..

web_master
Light Poster
28 posts since Aug 2007
Reputation Points: 10
Solved Threads: 0
 

could u explain more
and in a little detail

w_3rabi
Junior Poster
160 posts since Dec 2006
Reputation Points: 18
Solved Threads: 9
 

try the move_uploaded_file() function to save the file into your directory and create a variable that will create a path to your file in the directory that will be used to store the path in mysql.
it goes something like this..
<?
move_uploaded_file($_FILES['file']['tmp_name'],$newimage);
$ewan="../photoupload/";
$ewanko=$ewan . $newimage;
$query="insert into test1 set title='" .$_POST['textfield']. "',path='$ewanko',memid='$memid'";
mysql_query($query);
}
?>

ryan_vietnow
Posting Pro
578 posts since Aug 2007
Reputation Points: 28
Solved Threads: 71
 

how do i insert a image into a directory through MySQL, rename it, generate a link and upload the generated link in MySQL......???

anyhelp will be really apprietiated....

and if its a tutorial its the best way out, i'm not good at PHP.....

plz its urgent for me..

thx alot..

I found a great tutorial to do this here: http://www.php-mysql-tutorial.com/upload-to-file-server.php

I figured out a lot from this site!

gotmick
Newbie Poster
8 posts since Aug 2007
Reputation Points: 10
Solved Threads: 0
 

definitely base on your title you cant use mysql to move your file in the directory. but in php its posible, like ryan was posted..
and the use of mysql there is to save other information in the database
like Description, ImageName, Id, ForeignID etc..

flagbarton
Newbie Poster
10 posts since Aug 2007
Reputation Points: 10
Solved Threads: 0
 

how to insert image into mysql database in php .............
pls give error free code..............,,,,,,,,,,,,,,,,,

rahulsabari
Newbie Poster
2 posts since Jul 2010
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You