chagos66 Posted May 24, 2013 Share Posted May 24, 2013 I'm trying to get some values from a specifc row of an array. My array has this sort of structure: $places = array( array("name" => "Cabot Cove", "area" => "12", "lat" => "-11.003", "lon" => "-151.2285", "pop" => "17"), array("name" => "Smallville", "area" => "32;", "lat" => "-19.910", "lon" => "-50.205", "pop" => "18"), array("name" => "Gotham City", "area" => "85", "lat" => "-39.9294", "lon" => "-40.199", "pop" => "14"), array("name" => "Springfield", "area" => "21.6", "lat" => "-43.9534", "lon" => "-24.2118", "pop" => "18"), ); If a variable $city is set to "Gotham CIty", for example the url of the page could be "/cities/script.php?city=Gotham+City", how do I look through the array and get the "lat" and "lon" values for just this one $city from the array? Quote Link to comment Share on other sites More sharing options...
DaveyK Posted May 24, 2013 Share Posted May 24, 2013 You could run through the array with a loop and then stop if you find the name you need, like so: foreach($places as $place) { if ($place['name'] == $_GET['city']) { $info = $place; } } Another way to do this is, is to create a seperate array which would be an index for the places. $index_array = array(); foreach ($places as $k => $place) { $index_array[$place['name']] = $k; } // $index_array = array(cabot_cove => 0, smallville = 1, gotham city = 2, etch) if (array_key_exists($_GET['city'], $index_array)) { $info = $places[$index_array]; } Quote Link to comment Share on other sites More sharing options...
Solution Strider64 Posted May 24, 2013 Solution Share Posted May 24, 2013 Well Davey K beat me to the punch, but I came up with the first one he did: <?php $places = array( array("name" => "Cabot Cove", "area" => "12", "lat" => "-11.003", "lon" => "-151.2285", "pop" => "17"), array("name" => "Smallville", "area" => "32;", "lat" => "-19.910", "lon" => "-50.205", "pop" => "18"), array("name" => "Gotham City", "area" => "85", "lat" => "-39.9294", "lon" => "-40.199", "pop" => "14"), array("name" => "Springfield", "area" => "21.6", "lat" => "-43.9534", "lon" => "-24.2118", "pop" => "18"), ); foreach($places as $place) { if ($place['name'] == "Gotham City") { echo 'The latitude and longitude for ' , $place['name'] , ' is ' , 'lat: ' , $place['lat'] , ' lon: ' , $place['lon'] , '<br>'; } } Quote Link to comment Share on other sites More sharing options...
chagos66 Posted May 24, 2013 Author Share Posted May 24, 2013 Ah, thanks guys. Got it working now. Quote Link to comment Share on other sites More sharing options...
Barand Posted May 24, 2013 Share Posted May 24, 2013 Do you see the button labelled "Mark Solved"? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.