Question
Hi Guys, a Recusion is Cutting me Off
I have a PHP code which uses recursion to get categories and
subcategories.
I am trying to convert it with coldfusion but getting into trouble:
here is the code:
$result = mysql_query("select title,parentid from cat where cid=$catid");
list($title,$parentid)=mysql_fetch_row($result);
$title=getparentlink($parentid,$title);
I am trying to convert it with coldfusion but getting into trouble:
here is the code:
$result = mysql_query("select title,parentid from cat where cid=$catid");
list($title,$parentid)=mysql_fetch_row($result);
$title=getparentlink($parentid,$title);
