How can you integrate multiple upload buttons using the qq.FileUploader in PHP without all buttons being hidden simultaneously?

The issue arises when using the qq.FileUploader in PHP to integrate multiple upload buttons, as all buttons end up being hidden simultaneously due to the default behavior of the uploader. To solve this issue, you can modify the code to target specific upload buttons individually and prevent them from being hidden all at once.

<?php
// Initialize qq.FileUploader for each upload button individually
$uploader1 = new qqFileUploader($allowedExtensions, $sizeLimit);
$uploader1->uploaderName = 'uploader1';
$uploader1->render();
  
$uploader2 = new qqFileUploader($allowedExtensions, $sizeLimit);
$uploader2->uploaderName = 'uploader2';
$uploader2->render();
?>