Ya lo solucioné gracias a tu importantísima ayuda:
Código PHP:
foreach ($Calle1 as $Calless1 => $keyk1)
foreach ($Calle2 as $Calless2 => $keyk2)
{
$stmt = $conexion2->prepare('SELECT dato FROM datos WHERE calle1 =:calle1 AND calle2 =:calle2');
$stmt -> bindValue(':calle1',$keyk1);
$stmt -> bindValue(':calle2',$keyk2);
$stmt->execute();
while($datosca = $stmt->fetch())
{
$dato[]= $datosca["dato"];
}
}
Muchísimas gracia!!!!!!!