Bug in "implode-function" / No new records possible on PHP 8.0.0 June 08, 2021, 05:32:57 PM Hi there,currently testing PHPRad Vue-Edition (2.6.4). Seems to be fine, but an important information:In PHP 8 it is no longer supported to provide the separator in the implode-function as second argument. Therefore it is not possible, to add new records at this version of PHP with PHPRad generated scripts, because in PDOdb.php on line 479 it isQuoteif (isset($dataColumns[0])) $this->query .= ' (`'.implode($dataColumns, '`, `').'`) ';but should be:Quoteif (isset($dataColumns[0])) $this->query .= ' (`'.implode('`, `', $dataColumns).'`) ';Best regardsMatthias Quote Selected