how i can do this with JSTL and EL ?
<c:foreach var="item" items="${myList}">
<c:foreach var="item2" items="${myList2${item}}">
......
</c:foreach>
</c:foreach>
I want put the value of "item" inside "items" of the second foreach .
"Items" in the second foreach is calculated dynamically by concatenating the "item" value of the first loop and "myList" String.
Thanks