hi I am trying to get the total size of an arraylist but for some reason this is not being shown the code below is used to show the size.
<%db.DBConnection db = new db.DBConnection();
ArrayList<User> myUsers =db.getAllUsers();
%>
Total Subscribed Users: <p><% myUsers.size();%></p>
Thanks