Hi
I have the following array:
$links = array("Home", "About us", "Our Services");
foreach($links as &$link ){
$space = implode(" ", $links);
echo $space ;
break;
}
the above code displays Home About us Our Services, but now I want to use the same array for links so each one of the sections needs to be linked, how can I remove the white spaces so "
About us
" becomes "
aboutus
".
Thanls