I have this script which uses altenative controll syntax which i thought i understood but cant seem to turn the following line in to the regular syntax, can some one help please.
echo ($i==$depth || $i==$count_crumb-1)? "":$separator;
Thanks.😃
Hi,
I would say regular syntax would look like this:
if($i==$depth || $i==$count_crumb-1) { echo ""; } else { echo $separator; }
wizkid