I have 2 associative arrays.
Array ( [title1] => test1 [title2] => test2 [title3] => test3 )
and
Array ( [image1] => images1.jpeg [image2] => images2.jpg [image3] => images3.png )
I want to insert each title and image name into database columns(image title and image name).
How it is possible? Anyway to merge them and after that do insertion?
With this, in your finalArray you will have tuples of title an image for every database entry.