is a CLOUDINARY image upload system.
When I use assign a fixed value to the PUBLIC_ID, it works!
$files["remote"] = \Cloudinary\Uploader::upload($sample_paths["couple"],
array_merge($default_upload_options, array(
"public_id" => '8273',
))
However, when I use a variable for the PUBLIC_ID, the result of PUBLIC_ID is simply NULL
$files["remote"] = \Cloudinary\Uploader::upload($sample_paths["couple"],
array_merge($default_upload_options, array(
"public_id" => "$idbusca",
))
What can it be?