I keep finding myself always in need of some sort of assistance. In addition to the problem you guys are already helping me out, I'm getting this other error that is getting quite annoying.
I have a form that is submitting and uploading 2 images, as well as passing along a category id. However, after submitting them to a side-upload-script, the problem reveals itself:
I can echo the category by using
"echo $_POST[cat]"
just perfectly, I can also check the names of each image by using
"$_FILES['uploaded1']['name']" and
"$_FILES['uploaded2']['name']"
and I have 2 variables that I want to use as directory shortcuts:
table: photos
5 fields:
id (int(11)) , Not Null, auto_increment,
thumbnail, text, not null,
image, text, not null,
created_at, datetime, null
category_id (int(11)), not null
I'd really appreciate any kind of help. Thanks again guys.
Bookmarks