I created a table in my database
Code: Select all
create table items
(
itemId int auto_increment not null,
itemName varchar(50),
itemDesc varchar(250),
itemPrice decimal(4,2),
primary key(itemId),
unique id(itemId)
);Code: Select all
insert into items values(0, 'Tony Hawk 3', 'Tony Hawk is back. Join him in this popular skating game where speed, collisions and tricks come together to produce the best skating game of all time!', 23.95);http://www.ukbestkept.com/products.php
I need another column where I can add an image for my item.
how do I do that pls?
Also do I upload the image to my database? I've got phpmyadmin.
Thanks, I hope I made some sense and you're not lost.