Alright I'm making a forum system of my own and I need help making a breadcrumb trail. This is what I have so far.
It only does the 2nd/3rd/4th things and not the first one. Any help with this?
Code:
function doNav($act){
$addonfromHere = "<a href=\"".SITE_LINK."\">Index</a>";
$linkNum = count($act);
$linksUsed = 1;
$linksreturn = "";
foreach($act as $links){
$linkz[] = $links;
}
for($i = 0; $i <= $linkNum; $i++){
if($linksUsed == 1){
$linksreturn = $addonfromHere;
}else{
$linksreturn .= " » <a href=\"".SITE_LINK."$links/\">".$linkz[$i]."</a>";
}
$linksUsed++;
}
return $linksreturn;
}
It only does the 2nd/3rd/4th things and not the first one. Any help with this?
Last edited: