Hi, I have a localStorage, with value like this. cars: [{"car":"Fiat"},{"car":"Ford"}] What is the best way to send the value as an array to my PHP script? The PHP script will then do stuffs with the array, eg. insert it into mySQL database and so on. My quest...