in reply to Help With Multiple Form Fields
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.@employee = param("employee"); @sshift = param("sshift"); @eshift = param("eshift");
|
|---|