not submitting as array from form...

See all posts See thread Reply

Re: not submitting as array from form... new!
by colin, 17 years ago
Here's the error:
Replace:
$handle->process($uploadfile);
With:
$handle->process($uploaddir);

You can do some logging like this:
$handle->process($uploaddir);
$f = fopen('log', 'a');
fwrite($f, $handle->log);
fclose($f);
And then open the file called log to see what the class does.Reply