Well guys I am stuck here so let me expalin what I am doing. I am trying to make a PHP script to take two Kismet .csv files and combine them into one, while removing duplicate networks based upon MAC addresses. So basically I want it to look though the new text file and if there are two of the same MAC address it will delete one of them.
Now it was perty easy to combine the two files, basically I used file("kismet.csv") to put each line into an array then use array_merge to combine both arrays created by the two file functions.
However I am struggling with how to search though the array, and if PHP sees the same MAC address it deltes that array key.
If that does not make sense let me know and I will try to clear things up a little.
Thanks