I am a newbie and need help. I have searched all over the internet for an example and I don't understand most of them.
Here is my table
CREATE TABLE Producer (
producerid int(4) NOT NULL auto_increment,
producer varchar(100) NOT NULL default '',
producerdesc longtext NOT NULL,
picture_name varchar(25) NOT NULL default '',
PRIMARY KEY (producerid)
) TYPE=MyISAM;
Can someone show me the code to insert the image path into picture_name and the image into the directory and then the code to view the image with a select statement.
thanks for your help in advance