Most of the fields are being imported correctly, but the `created_by`, `created`, `modified_by`, `modified`, `checked_out`, and `checked_out_time` fields are all being imported as zeros. Can anyone provide me with a hint on how to fix this issue or how to use a variable to fill a field?
$stmt = $conn->prepare("REPLACE `$prefix" . "autos` (`id`, `auto_id`, `title`, `alias`, `category_id`, `featured`, `features_text`, `description`, `image`, `gallery`, `auto_status`, `rent_period`, `price`, `currency_format`, `currency_position`, `currency`, `dealer_id`, `country`, `city`, `state`, `address`, `map`, `zip`, `vehicle_condition`, `doors`, `mileage`, `drive`, `engine`, `transmission`, `body`, `fuel_type`, `vehicle_year`, `features`, `video_text`, `video`, `interior_text`, `interior`, `published`, `language`, `access`, `ordering`, `created_by`, `created`, `modified_by`, `modified`, `checked_out`, `checked_out_time`)
VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)");
$stmt->execute([$row[0], $row[1], $row[2], $row[3], $row[4], $row[5], $row[6], $row[7], $row[8], $row[9], $row[10], $row[11], $row[12], $row[13], $row[14], $row[15], $row[16], $row[17], $row[18], $row[19], $row[20], $row[21], $row[22], $row[23], $row[24], $row[25], $row[26], $row[27], $row[28], $row[29], $row[30], $row[31], $row[32], $row[33], $row[34], $row[35], $row[36], $row[37], $row[38], $row[39], $row[40], $row[41], $row[42], $row[43], $row[44], $row[45], $row[46]]);