phpbar.de logo

Mailinglisten-Archive

[php] daten in tabelle schreiben

[php] daten in tabelle schreiben

Alex Killing alexkill_(at)_mail.online-club.de
Mon, 14 Feb 2000 17:01:34 +0100


hi marcel,

Marcel Kurz wrote:
> <?
> while ($myrow2 = mysql_fetch_array($kreise2)){
> echo ("<tr><td>$myrow2[kreis]</TD>");
> echo ("<td>$myrow2[kreis]</TD></tr>");
> }
> ?>

ich bin mir nicht so sicher, ob es folgendes ist, was du meinst:

$cnt=0;
while ($myrow2 = mysql_fetch_array($kreise2)){
  if($cnt==0) echo "<tr>";
  echo ("<td>".$myrow2[kreis]."</TD>");
  $cnt++;
  if($cnt==2) { echo "</tr>"; $cnt=0; }
}
if($cnt!=2) echo "</tr>";

-- 
*****************************************
*** Alex Killing *** http://4real.de/ ***
*****************************************


php::bar PHP Wiki   -   Listenarchive