Jonny 5: Aus Array Tabelle aufbauen

Beitrag lesen

und beim 3 Durchlauf wieder das ganze ausführen.

hmm, weiss nicht ob ich richtig verstehe, abhängig von row# ergebnis anpassen? zb. zähler mitgeben:

$i=0;

while($row=mysql_fetch_array($result)){ $i++;
  switch($i){
    case 1: $col1=$row['Col1']; $col2=""; break;
    case 2: $col1=""; $col2=$row['Col2']; break;
    default: $col1=$row['Col1']; $col2=$row['Col2']; break;
  }
  echo '<tr><td>'.$col1.'</td><td>'.$col2.'</td></tr>.';
}

lG, Jonny5