I am new in php. For my shopping website project I need your help.
In my add_product page I have product image option. When I submit the form the File image will re-size in 3 different size in different folder like-
30x30 for Shopping cart icon in 'Product/Image/Icon' folder.
170x300 for Base image in 'Product/Image/Base' folder.
400x300 for Large View in 'Product/Image/Thumb' folder.
I have also a database table -
ID
Product ID
thumb_name
thumb_type
After submit form also each file generate a unique new name and saved in the above table in like -
ID : Auto increment
Product ID : 44545
thumb_name : new file name here
thumb_type: Base Image
How to re-size image and upload in different folder with different size and insert the file name in MySQL database? Plz help me any one.