I\'m looking for the name of the PHP function to build a query string from an array of key value pairs. Please note, I am looking for the built in PHP function to d
Implode will combine an array into a string for you, but to make an SQL query out a kay/value pair you'll have to write your own function.