Multiple Images

See all posts See thread Reply

Re: Multiple Images new!
by colin, 16 years, 11 months ago
The example on the main page does process the same upload thrice.

Do as following:
$foo = new Upload($_FILES['form_field']); 
if ($foo->uploaded) {
  // first processing
  $foo->xxxx = 'aaa';
  $foo->Process('/home/user/files/');

  // second processing
  $foo->xxxx = 'bbb';
  $foo->Process('/home/user/files/');
}
Reply