I have a PHP array like
array("Saab", "Volvo", "BMW", "Toyota");
I need to store this in a MySQL database in a way that each value is inserted into a new field and not in a same field. It can be achieved by using foreach statement and running the query inside foreach statement. But I need a more efficient way to do it in a single query.