View Single Post
  #1 (permalink)  
Old 01-02-09, 08:18 AM
tomming tomming is offline
Newbie Coder
 
Join Date: Jan 2009
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
How to upload image to sql table and resize it?

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
Reply With Quote