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.
echo '<table>';
for ($i=0; $i<=count($comments); $i++)
{
$tmp++;
echo '<td>'
.$comments[$i][2]
.'</td>'
.'<td>'
.$comments[$i][1]
.'</td>'
.'<input type="hidden" name="zeile[]" value="'
.$tmp
.'">'
.'<tr>';
}
echo '</table>';
echo '<table>';
for ($i=0; $i<=count($comments); $i++)
{
//Hier kommt de Code von evilash hin
$tmp++;
echo '<td bgcolor=$stylesheet /* Die aktuelle Farbe wird angezeigt anhand dem Code von evilash */>'
.$comments[$i][2]
.'</td>'
.'<td bgcolor=$stylesheet /* Die aktuelle Farbe wird angezeigt anhand dem Code von evilash */>'
.$comments[$i][1]
.'</td>'
.'<input type="hidden" name="zeile[]" value="'
.$tmp
.'">'
.'<tr>';
}
echo '</table>';
echo '<table>';
$ll = 1;
for ($i=0; $i<=count($comments); $i++)
{
$tmp++;
if($l1 == 1)
{
echo '<tr bgcolor='white'>';
$ll = 0;
}
else
{
echo '<tr bgcolor='grey'>';
$ll = 1;
}
echo '<td>'
.$comments[$i][2]
.'</td>'
.'<td>'
.$comments[$i][1]
.'</td>'
.'<input type="hidden" name="zeile[]" value="'
.$tmp
.'">'
.'</tr>';
}
echo '</table>';
echo '<table>';
for ($i=0; $i<=count($comments); $i++)
{
$tmp++;
echo '<td bgcolor="'. ($i % 2 == 0 ? "#FFFFFF" : "000000") .'">'
.$comments[$i][2]
.'</td>'
.'<td bgcolor="'. ($i % 2 == 0 ? "#FFFFFF" : "000000") .'">'
.$comments[$i][1]
.'</td>'
.'<input type="hidden" name="zeile[]" value="'
.$tmp
.'">'
.'<tr>';
}
echo '</table>';