how to direct 2 buttons' action (loop statement)
i'm developing a program where the manager is able to give approval to articles that are submitted by users.
i've created a page where all the articles will be listed out in a table form (1 article in 1 table)using a loop statement. in each table, there will be 2 buttons "give approval" and "reject". when manager clicks the button, it should perform the respective actions ("give approval" action=approve.jsp and "reject" action= reject.jsp). how should i code it as each table will have different article title.

