I store all data in the database.
CREATE TABLE ads
(
id varchar(15),
description varchar(255),
bin_data LONGBLOB,
filename varchar(50),
filesize varchar(50),
filetype varchar(50),
link varchar(255),
shownno integer(5),
clickcount integer(5),
unique(id)
);
I know the pictures work right because I can
<img src="pic.php">
and inside the code I use just a particular query in the pic.php to get the id.
Please help I am ripping my hair out....
--John