Possible Duplicate:
Is there a way to get a category's name in lowercase?
This code currently grabs actor data from the MYSQL and then prints it out.
Is there a way to edit the below code so that the a href link result is all lowercase letters?
$TMPL['actor'] = '';
foreach(explode(', ', $TMPL['actors']) as $v)
$TMPL['actor'] .= '<a href="/actor/'.str_replace("+", "-", urlencode($v)). '">'.$v.'</a> <br />';
$actors .= $skin->make();
Using php’s
strtolowerfunction