Hi again,
please in End Submi pieces add this:
$this->execPieceByName('ff_InitLib');
$session = JFactory::getSession();
$files = glob('media/breezingforms/uploads/yourfolder/*''); // get all file names who should be saved in that path, * represent all in that folder
$filecount = 0;
if ($files){
$filecount = count($files);
}
$session->set('count', $filecount);
In Before form pieces add this:
$session = JFactory::getSession();
if (JRequest::getInt('ff_status', -1) == 0) {
$count = $session->get('count');
echo 'Number of files is: '.$count;
}
Hope this helps
Regards,
Tihana