In the $_GET array, because you are using the same variable name for each one of your members, it will overwrite it, so you end up with only the last one.
Try naming your inputs Mem[] and point[], which will create subarrays for each in the $_GET array.