Yes, I ran into the same problem. Then I realized what I was doing wrong with the keys. In fact, I used a quote by naming the form elements as an array
Example -
echo "<input type='hidden' name= userprogramscholarship[$user->id]['checkstatus'] value= $val />";
I adjusted and removed the quotes below
echo "<input type='hidden' name= userprogramscholarship[$user->id][checkstatus] value= $val />";
It was a small mistake. Deleted quotes, and it worked then.
source share