PHP Schleife - Problem

  • Hi,


    ich habe hier eine PHP Schleife die mir bei jeden Durchlauf ein <tr> ausgibt. Hat jemand eine Idee wieso?


    http://pastebin.com/Nd2GHuNk



    /edit: Fehler gefunden


    Vorher:

    PHP
    //Über der schleife:$i=1;  // In der Schleife$x++;if($i==1){        echo"        <tr>";}         echo"        <td class='col-md-2'>$i                <a href='/artikel/$Mtitle.html'><img src='$Mimage' alt='$Mtitle' style='width: 85px;height: 75px;'></a>        </td>        <td class='col-md-4'>                <a href='/artikel/$Mtitle.html'><b>$Mtitle</b></a> <span class='badge'>$Mcomments</span><br>                $Mtext        </td>        ";                if($i==1){        echo"        </tr>";}  $i++; if($i==2){        $i=0;}


    Nachher

    PHP
    //Über der schleife:$i=1;  // In der Schleife$x++;if($i==1){        echo"        <tr>";}         echo"        <td class='col-md-2'>$i                <a href='/artikel/$Mtitle.html'><img src='$Mimage' alt='$Mtitle' style='width: 85px;height: 75px;'></a>        </td>        <td class='col-md-4'>                <a href='/artikel/$Mtitle.html'><b>$Mtitle</b></a> <span class='badge'>$Mcomments</span><br>                $Mtext        </td>        ";          $i++;      if($i==1){        echo"        </tr>";}   if($i==2){        $i=0;}