How do i store array of image names dynamically into the database using PHP

cbbw

New Member
i am using the jQuery Plugin Uploadify to upload files, and i store the image name with path into the database with simple mysql query and then retrieve it. my MySQL database table is using the following entities,\[code\]id int(20) image_url varchar(255)\[/code\]my image store procedure is such as, i first rename the file, give it a unique name and move it to the desired directory. and then store the image name with path into the database. currently by using simple mysql INSERT statement i am storing a single file name. now i want to upload the array of image names with path. or i want to store as much image as i want dynamically into the single table col image_url, for some reason i plan to store 4 or more images, i want all the four image to have one particular id number.how do i do it?thank you
 
Back
Top