0
Colleagues.
I have a form where one of the fields is file Multiple, IE, the user can send more than one photo to the database, but I need to pass the photos, if more than one, for the method of registration. 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 would I pass these photos to method? I thought to use the foreach() and the implode(","$$photos); and within the rescue method with the explodes(","$pictures,);. Would there be some other solution?
Thank you Ack Lay.
– user24136