nur seh ich gar nicht mehr durch ?

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • nur seh ich gar nicht mehr durch ?

    kann mir mal jemand erklären, warum das erste Codebeispiel
    nicht richtig arbeitet ?
    PHP-Code:
    $result $query->select("SELECT ... ");
    echo 
    $query->rows// ergibt 50 !
    for($i 0;$i $query->rows; ++$i){
        
    $tpl->add_block_data('detail', array(
            
    'feld1' => $result[$i][1],
            
    'feld2' => format_output($result[$i][0]),
            
    'feld3' => format_datetime($result[$i][2], " "),
            
    'feld4' => $result[$i][3],
            
    'feld5' => format_output($result[$i][4])
                ));
    // Schleife gibt nur 10 aus ??? 
    und das funktioniert
    PHP-Code:
    $result $query->select("SELECT ... ");
    echo 
    $rows $query->rows// ergibt 50 !
    for($i 0;$i $rows; ++$i){
        
    $tpl->add_block_data('detail', array(
            
    'feld1' => $result[$i][1],
            
    'feld2' => format_output($result[$i][0]),
            
    'feld3' => format_datetime($result[$i][2], " "),
            
    'feld4' => $result[$i][3],
            
    'feld5' => format_output($result[$i][4])
                ));
    // Schleife gibt alle 50 aus ??? 
    PS: dieser Effekt tritt nur in einem einzigen Script auf,
    in allen anderen Scripten arbeitet
    PHP-Code:
    for($i 0;$i $query->rows; ++$i
    einwandfrei
    TBT

    Die zwei wichtigsten Regeln für eine berufliche Karriere:
    1. Verrate niemals alles was du weißt!


    PHP 2 AllPatrizier II Browsergame

  • #2
    ...gib mal $query->rows innerhalb deiner schleife mit aus...
    eval(str_pad(aa|db,4,slarti^~äü_i_)." \"áú¾ïùû䶳Ðäýï©üèíþç£þé\"^~\"no bugs, only features\";");

    Kommentar


    • #3
      wenn ich zu Hause bin, kann ich dir's sagen.

      eine Ausgabe der $i brachte

      0 1 2 3 4 5 6 7 8 9
      TBT

      Die zwei wichtigsten Regeln für eine berufliche Karriere:
      1. Verrate niemals alles was du weißt!


      PHP 2 AllPatrizier II Browsergame

      Kommentar

      Lädt...
      X