Answer the question
In order to leave comments, you need to log in
How to loop through an array of multiple values?
There is an array of several values, you need to sort it out and add it to the database.
It turns out like this: I
use Yandex maps api, I look for the address in the search, I get the full address (Russia, city, street, house) and longitude and latitude coordinates.
Before that, I iterated over the array only from the full address and sent it to the database as separate records with a unique id.
Now I need to add coordinates (longitude and latitude) to these addresses. Only one and the same is added, because I'm not sorting through the array correctly. Please tell me how to do it, it doesn't work.
$address = $_POST['address'];
$coordinates = $_POST['coordinates'];
$coordinates2 = $_POST['coordinates2'];
foreach ($address as $key => $address) {
$query->execute([:name' => $address, ':coordinates' => $coordinates,':coordinates2' => $coordinates2]);
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question