Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.
Hi.
In saveAttachment I see
$cnt = 0;
while(isset($_FILES['uploadedfile'.$cnt])){
$uploadedFileArray[]=$_FILES['uploadedfile'.$cnt];
}
I believe you want
$cnt = 0;
while(isset($_FILES['uploadedfile'.$cnt])){
$uploadedFileArray[]=$_FILES['uploadedfile'.$cnt++];
}
or you will enter in endless loop
Best regards
You're right,
$cnt++;
is missing
But I guess it's an old part of code that's not used any more with HTML5...
(or we would have many errors reported)