Colleagues.
I have a form where one of the fields is file multiple, that is, the user can send more than one photo to the database, but I need to pass the photos, if more than one, to the registration method. See below:
$nomeProduto = filter_input(INPUT_POST,"NomeProduto");
$valorProduto = filter_input(INPUT_POST,"ValorProduto");
......
$fotos = $_FILES["FotoProduto"]["name"];
$metodos->cadastrarProdutos($nomeProduto,$valorProduto,....,$fotos);
The method:
public function cadastrarProdutos($nomeProduto,$valorProduto,....,$fotos){
// Aqui eu pegar todas as fotos que foram enviadas
}
How do I pass these photos to method? I thought about using foreach () and implode (", $ photos); and within the explode photos); . Would you have any other solution?