Insert Array in Plugin Database

You should pass data as an array, not a json encoded string. So changing these line would work. Just remove the following line –

$formDATA = json_encode($formDATA);

if you want to see the reference, prepare sql this way

$sql = "INSERT INTO `".$table_name ."` (`paid_arr`) VALUES '".json_encode($formDATA)."'";