I would like to get the values from this array into two variables:
- $title
- $url
for each of these inner arrays. How can I do it?
Array
(
[0] => Array
(
[0] => Reuters
[1] => http://www.reuters.com
)
[1] => Array
(
[0] => CNN
[1] => http://www.cnn.com
)
)
This would give you two arrays with your titles and urls:
Or if you want to get your values into variables: