Is it possible to put PHP-code surrounded by HTML which is surrounded by PHP? Here is a little code-snippet. All of that is in PHP-brackets. The browser displays the table but not the PHP values.
echo "<tr>";
echo '<td class="tg-031e"><?php echo $Auftragsnummer;?></td>';
echo '<td class="tg-031e"><?php echo $Modellbezeichnung;?></td>';
echo '<td class="tg-031e"><?php echo $Untersuchungsart;?></td>';
echo '<td class="tg-031e"><?php echo $TUEV_Stelle;?></td>';
echo '<td class="tg-031e"><?php echo $TUEV_Termin;?></td>';
echo "</tr>";
Regards Bluefox
sprintf()instead of co-mingling the HTML and php. It does more-or-less the same thing and is easier to read.