Hey all,
Im a little confused about taking the values of a 2D array and placing them into a query or string to use in query. I've done some homework but unfortunatly square eyes and a caffeine comedown just isn't helping.
Essentially I have an array named $myarray.
It looks like this:
Array ( [1] => 3 [2] => 4 [3] => 3 )
What I'd like to do is take the 3,4,3, and be able to use in a sql query such as "INSERT INTO table(column) VALUES (3, 4, 3)";
Any help will be welcomed as most sites I've checked refer to using implode on 1D arrays.