I have this array and I'm currently researching on how to make the contents of the output lowercase.
foreach ($city_info['links'] as $bikes => $url) {
echo '<span><a href="'.$url.'"> '.$bikes.'</a></span>';
}
I have this array and I'm currently researching on how to make the contents of the output lowercase.
foreach ($city_info['links'] as $bikes => $url) {
echo '<span><a href="'.$url.'"> '.$bikes.'</a></span>';
}
echo '<span><a href="' . strtolower($url) . '"> '. strtolower($bikes) .'</a></span>';