PHP קוד:
function GetCat($catp = 0, $level = 0)
{
$query = mysql_query("SELECT * FROM cat WHERE catp = '" . $catp . "' ");
if(mysql_num_rows($query) == 0)
{
return 0;
}
$i = 0;
$level++;
while($info = mysql_fetch_assoc($query))
{
echo str_repeat('>' , $level) . " " . $info['catname'] . "<br />";
GetCat($info['catid'], $level);
}
}