Hi there, I just upgraded from php4 to php5 and now i'm getting the "Catchable fatal error: Object of class upload could not be converted to string in ..."
Here's my code indicated with the error. (any help is appreciated)
for ( $i=1 ; $i<13; $i++ ) {
//error starts below
$products_subimage.$i = new upload('products_subimage'.$i);
$products_subimage.$i->set_destination(DIR_FS_CATALOG_IMAGES);
if ($products_subimage.$i->parse() && $products_subimage.$i->save()) {
$products_subimage.$i_name = $products_subimage.$i->filename;
} else {
$products_subimage.$i_name = (isset($HTTP_POST_VARS['products_previous_subimage'.$i]) ? $HTTP_POST_VARS['products_previous_subimage'.$i] : '');
}
}