My problem gets a little complicated. (I am using PHP)
I have two arrays (a simple array of arrays [0] = string, array [1] = string ...) OK, now I will show the contents of the two arrays on the web page. The first array contains the names and the second URL of the images.
Images and names are already displayed (my problem is not here).
But now I want to do something else, add a flag next to each image, by default this flag r is active. So now the user can uncheck the inbox
The ultimate goal is to get a new array containing only the values โโof the names and images that have been verified.
I thought of something simple, scanning the keys (number) of unverified flags and canceling them from my array. But the problem is that I did not know how to deal with checkboxes
source
share