He want to upload multiple images to php.
As i already answered in the other thread the PHP-Script must support it.
Basically on B4A-Side PostMultipart is perfect. Even for multiple Images.
The PHP-Script must be able to handle them.
<?php
if(isset($_POST['submit'])){
// Count total files
$countfiles = count($_FILES['file']['name']);
// Looping all files
for($i=0;$i<$countfiles;$i++){
$filename = $_FILES['file']['name'][$i];
// Upload file
move_uploaded_file($_FILES['file']['tmp_name'][$i],'upload/'.$filename);
}
}
?>
BTW: I found this code within 10 seconds Googling "handle multiple uploaded file with php"