in reply to Help With Multiple Form Fields

Alright. So I turn
$employee = param("employee"); $sshift = param("sshift"); $eshift = param("eshift");
To
@employee = param("employee"); @sshift = param("sshift"); @eshift = param("eshift");
This allows me to get all the data into each array. Now I need my loop to process the three arrays for each $employee, $sshift, and $eshift like in my above code.

Perhaps I need to type more clearly as my main delema was overlook. Although a lot of good came from it being missed! Thanks