Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
$inhalt = '<table width="75%" border="1" bordercolor="#666666">';
$inhalt .= '<tr>';
$i = 0;
while( $row = mysql_fetch_object( $result ) )
{
$i++;
$inhalt .= '<td valign="middle">
<div align="justify"><center>
<a href="frau.php?detail&id=' .$row->id. '"><img src="http://www.tutorials.de/forum/images/products/frau/' .$row->bild. '" width="200" height="200" border="0" align="middle"></a><br />
' .$row->kurzinfo. '
</center></div>
</td>';
if( $i % 3 == 0 )
{
$inhalt .= '</tr><tr>';
}
}
$inhalt .= '</tr>';
$inhalt .= '</table>';