View Single Post
ישן 09-06-07, 21:13   # 9
בניה
משתמש - היכל התהילה
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
מיקום: נחושה
הודעות: 3,434

בניה לא מחובר  

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);
    }

  Reply With Quote