algo asi funcionaria o le haria falta alguna mejora
solo necesitas una tabla
Código HTML:
Ver original[HIGHLIGHT="PHP"]
function recursiva($padre=0){
$sql="select from categories where id =".$padre;
$res=mysql_query($sql);
if(mysql_num_rows($res) > 0){
while ($row = mysql_fetch_object($res)) {
echo $row->category.'
<br />';
if($row->category==0){
recursiva($row->category);
}
}
}
}
[/HIGHLIGHT]