What php code can support image?
Posted: Tue May 11, 2004 10:46 am
Let say i create a table call:
Then i wan to upload the image for everytime i insert the new data into my table,what should i do? And also can delete the image when i delete the data at the same time...
Anyone who know that?
Code: Select all
<?php
create table Category(
CategoryID int(20) not null AUTO_INCREMENT,
CategoryName varchar(100) not null,
Description varchar(255) not null,
primary key (CategoryID)
);
?>Anyone who know that?