Código PHP:
ArrayList<String> data = new ArrayList<String>();
for(int i=0; i<42; i++){
data.add(request.getParameter("numero"+i));
}
Lo que quiero es poder modificar los null por otra cosa
por ejemplo
Muestro lo que hay en el ArrayList
Código PHP:
for(int i=0; i<42; i++){
if(data.get(i)==null){
data.get(i) = "otra cosa";
}
<%= data.get(i) %>
}