Hello,I am here because I am very new about php.
First,I want to create a site to left people upload their photo,i want to know the basic how to upload photo to sql per user and resize it.I have a sql table which i get from website.
CREATE TABLE tbl_images (
id tinyint(3) unsigned NOT NULL auto_increment,
image blob NOT NULL,
PRIMARY KEY (id)
);
and dont forget to tell me how to retrieve image from the blob field
thank