Hi guys,

I'm using ant to deploy to an app server (Tomcat)...i've created a list object, of which i have some variables that are being retrieved from a mysql db....however i'm not getting the results to be shown using a tab lib "for each"

e.g i have

[JSP

${numZone} zones

<select name="optzone_id">
<c:forEach items="${zonelist}" var="c">
<option value="${z.zone_id}">${z.zone_name}</option>
</c:forEach>
</select>

[/JSP]

but it does show the $numZone count value,but not the ${zonelist} variables from the database.