phpbar.de logo

Mailinglisten-Archive

[php] Tabellenausgabe fromatieren - UPDATE

[php] Tabellenausgabe fromatieren - UPDATE

Martin Samesch martin.samesch_(at)_vogelspinnenseite.de
Thu, 06 Jul 2000 21:23:07 +0200


Hallo,

grundsaetzliche Frage/Anmerkung....

loss Mathias wrote:
> 
> [....]
> > if($result=mysql_query($sql)) {
>   echo '<table border=1 cellpadding=3 cellspacing=0 bgcolor="#DFFFFF"
> bordercolor="#0000FF">' . "\n";
>   while(list($spalte1, $spalte2)=mysql_fetch_row($result)){
>     echo '<tr><td><font color="' . $a_farbe[$s_zaehler % 2] . '">' .
> $spalte1 . '</td>
>             <td><font color="' . $a_farbe[$s_zaehler % 2] . '">'  . $spalte2
> . '</td></tr>'
>          . "\n";
>   $s_zaehler++;
>   }
> [....]

Von persoenlichen Gewohnheiten abgesehen: waere es nicht besser, HTML
und PHP zu trennen (Performance?)? Stattdessen also:

if($result=mysql_query($sql)){
?>
<table border=1 cellpadding=3 cellspacing=0 bgcolor="#DFFFFF"
bordercolor="#0000FF">
<?
  while(list($spalte1, $spalte2)=mysql_fetch_row($result)){
?>
<tr>
  <td><font color="<? = $a_farbe[$s_zaehler % 2] ?>"><? = $spalte1
?></td>
  <td><font color="<? = $a_farbe[$s_zaehler % 2] ?>"><? = $spalte2
?></td>
</tr>
<?
    $s_zaehler++;
  }

Gruss,
Martin


php::bar PHP Wiki   -   Listenarchive